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:
parent
3c71ab34dd
commit
f3ed0f7c6c
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue