Merge branch 'maint'
This commit is contained in:
commit
6e0e76308c
17
lisp/org.el
17
lisp/org.el
|
@ -15558,15 +15558,14 @@ However, if LITERAL-NIL is set, return the string value \"nil\" instead."
|
|||
(save-restriction
|
||||
(widen)
|
||||
(catch 'ex
|
||||
(let (org-file-properties org-global-properties org-global-properties-fixed)
|
||||
(while t
|
||||
(when (setq tmp (org-entry-get nil property nil 'literal-nil))
|
||||
(or (ignore-errors (org-back-to-heading t))
|
||||
(goto-char (point-min)))
|
||||
(move-marker org-entry-property-inherited-from (point))
|
||||
(throw 'ex tmp))
|
||||
(or (ignore-errors (org-up-heading-safe))
|
||||
(throw 'ex nil)))))))
|
||||
(while t
|
||||
(when (setq tmp (org-entry-get nil property nil 'literal-nil))
|
||||
(or (ignore-errors (org-back-to-heading t))
|
||||
(goto-char (point-min)))
|
||||
(move-marker org-entry-property-inherited-from (point))
|
||||
(throw 'ex tmp))
|
||||
(or (ignore-errors (org-up-heading-safe))
|
||||
(throw 'ex nil))))))
|
||||
(setq tmp (or tmp
|
||||
(cdr (assoc property org-file-properties))
|
||||
(cdr (assoc property org-global-properties))
|
||||
|
|
Loading…
Reference in New Issue