0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-08-21 16:18:52 +00:00

org.el (org-refresh-properties): Don't throw an error when reaching the end of the buffer

* org.el (org-refresh-properties): Don't throw an error when
reaching the end of the buffer.
This commit is contained in:
Sacha Chua 2014-04-11 11:28:45 +02:00 committed by Bastien Guerry
parent 3589f64e42
commit d6a38604e6

View file

@ -9290,7 +9290,7 @@ property to set."
(save-excursion
(org-back-to-heading t)
(put-text-property
(point-at-bol) (outline-next-heading) tprop p))))))))
(point-at-bol) (or (outline-next-heading) (point-max)) tprop p))))))))
;;;; Link Stuff