org.el (org-refile): Fix bug when refiling the last subtree

* org.el (org-refile): Fix bug when refiling the last subtree
of the buffer: don't leave out the last character.
This commit is contained in:
Bastien Guerry 2014-01-30 12:21:39 +01:00
parent 3c71ab34dd
commit f3ed0f7c6c
1 changed files with 1 additions and 1 deletions

View File

@ -11629,7 +11629,7 @@ prefix argument (`C-u C-u C-u C-c C-w')."
(delete-region (point) (+ (point) (- region-end region-start)))
(delete-region
(and (org-back-to-heading t) (point))
(min (buffer-size) (org-end-of-subtree t t) (point)))))
(min (1+ (buffer-size)) (org-end-of-subtree t t) (point)))))
(when (featurep 'org-inlinetask)
(org-inlinetask-remove-END-maybe))
(setq org-markers-to-move nil)