Fix export of links to attachments (part 2)
* lisp/org.el (org-entry-get): Widen buffer in order to retrieve a property, as both `org-entry-properties' and `org-entry-get-with-inheritance' already do.
This commit is contained in:
parent
0a4d192b79
commit
5ae3a25755
10
lisp/org.el
10
lisp/org.el
|
@ -15362,12 +15362,14 @@ when a \"nil\" value can supersede a non-nil value higher up the hierarchy."
|
||||||
t))
|
t))
|
||||||
(org-entry-get-with-inheritance property literal-nil)
|
(org-entry-get-with-inheritance property literal-nil)
|
||||||
(if (member property org-special-properties)
|
(if (member property org-special-properties)
|
||||||
;; We need a special property. Use `org-entry-properties' to
|
;; We need a special property. Use `org-entry-properties'
|
||||||
;; retrieve it, but specify the wanted property
|
;; to retrieve it, but specify the wanted property
|
||||||
(cdr (assoc property (org-entry-properties nil 'special property)))
|
(cdr (assoc property (org-entry-properties nil 'special property)))
|
||||||
|
(org-with-wide-buffer
|
||||||
(let ((range (org-get-property-block)))
|
(let ((range (org-get-property-block)))
|
||||||
(when (and range (not (eq (car range) (cdr range))))
|
(when (and range (not (eq (car range) (cdr range))))
|
||||||
(let* ((props (list (or (assoc property org-file-properties)
|
(let* ((props
|
||||||
|
(list (or (assoc property org-file-properties)
|
||||||
(assoc property org-global-properties)
|
(assoc property org-global-properties)
|
||||||
(assoc property org-global-properties-fixed))))
|
(assoc property org-global-properties-fixed))))
|
||||||
(ap (lambda (key)
|
(ap (lambda (key)
|
||||||
|
@ -15385,7 +15387,7 @@ when a \"nil\" value can supersede a non-nil value higher up the hierarchy."
|
||||||
(goto-char (car range))
|
(goto-char (car range))
|
||||||
(while (funcall ap (concat property "+")))
|
(while (funcall ap (concat property "+")))
|
||||||
(setq val (cdr (assoc property props)))
|
(setq val (cdr (assoc property props)))
|
||||||
(when val (if literal-nil val (org-not-nil val))))))))))
|
(when val (if literal-nil val (org-not-nil val)))))))))))
|
||||||
|
|
||||||
(defun org-property-or-variable-value (var &optional inherit)
|
(defun org-property-or-variable-value (var &optional inherit)
|
||||||
"Check if there is a property fixing the value of VAR.
|
"Check if there is a property fixing the value of VAR.
|
||||||
|
|
Loading…
Reference in New Issue