summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Schulte <eric.schulte@gmx.com>2012-02-18 08:28:40 -0700
committerEric Schulte <eric.schulte@gmx.com>2012-02-18 08:28:40 -0700
commitbf238997a9e173355be7b14d692249d674b11e34 (patch)
treed1951638aaeb28768091f4dbcee4570a4854502c
parent51923ff2bcfb5c441ed9c10635fe0160589c0ba5 (diff)
downloadorg-mode-bf238997a9e173355be7b14d692249d674b11e34.tar.gz
Generalize to multiple "prop+" properties.
* lisp/org.el (org-entry-get): Generalize to multiple "prop+" properties.
-rw-r--r--lisp/org.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 4980d1b..20a2867 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -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))))))))))