0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 19:37:52 +00:00

babel: don't check for header arguments in properties with leading ":"s

* lisp/ob.el (org-babel-params-from-properties): Don't check for
  header arguments in properties with leading ":"s.
This commit is contained in:
Eric Schulte 2011-08-30 14:50:26 -06:00
parent d775777afc
commit cae9f947be

View file

@ -949,9 +949,7 @@ may be specified in the properties of the current outline entry."
(delq nil (delq nil
(mapcar (mapcar
(lambda (header-arg) (lambda (header-arg)
(and (setq val (and (setq val (org-entry-get (point) header-arg t))
(or (org-entry-get (point) header-arg t)
(org-entry-get (point) (concat ":" header-arg) t)))
(cons (intern (concat ":" header-arg)) (cons (intern (concat ":" header-arg))
(org-babel-read val)))) (org-babel-read val))))
(mapcar (mapcar