Forráskód Böngészése

Generalize to multiple "prop+" properties.

* lisp/org.el (org-entry-get): Generalize to multiple "prop+" properties.
Eric Schulte 13 éve
szülő
commit
bf238997a9
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      lisp/org.el

+ 1 - 1
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))))))))))