Generalize to multiple "prop+" properties.

* lisp/org.el (org-entry-get): Generalize to multiple "prop+" properties.
This commit is contained in:
Eric Schulte 2012-02-18 08:28:40 -07:00
parent 51923ff2bc
commit bf238997a9
1 changed files with 1 additions and 1 deletions

View File

@ -14154,7 +14154,7 @@ when a \"nil\" value can supersede a non-nil value higher up the hierarchy."
(when (and range (goto-char (car range)))
(ap property)
(goto-char (car range))
(ap (concat property "+"))
(while (ap (concat property "+")))
(setq val (cdr (assoc property props)))
(when val (if literal-nil val (org-not-nil val))))))))))