Fixed bug with inserting headlines into a narrowed buffer region.

This commit is contained in:
Carsten Dominik 2008-07-17 09:57:50 -07:00
parent 0702d9f3c6
commit 323b54472e
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2008-07-17 Carsten Dominik <dominik@science.uva.nl> 2008-07-17 Carsten Dominik <dominik@science.uva.nl>
* org.el (org-narrow-to-subtree): Do not include the final newline
into the narrowed region.
* org-agenda.el (org-agenda-custom-commands-local-options): Fixed * org-agenda.el (org-agenda-custom-commands-local-options): Fixed
bug with user-define skipping condition. bug with user-define skipping condition.

View File

@ -5121,7 +5121,7 @@ If yes, remember the marker and the distance to BEG."
(save-match-data (save-match-data
(narrow-to-region (narrow-to-region
(progn (org-back-to-heading) (point)) (progn (org-back-to-heading) (point))
(progn (org-end-of-subtree t t) (point)))))) (progn (org-end-of-subtree t) (point))))))
;;; Outline Sorting ;;; Outline Sorting