Browse Source

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.
Eric Schulte 13 years ago
parent
commit
cae9f947be
1 changed files with 1 additions and 3 deletions
  1. 1 3
      lisp/ob.el

+ 1 - 3
lisp/ob.el

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