babel: now taking headline properties into account for lob calls

This commit is contained in:
Eric Schulte 2010-03-28 16:53:00 -06:00
parent 9c09a85ab6
commit e8a125bed7
1 changed files with 2 additions and 0 deletions

View File

@ -99,9 +99,11 @@ the word 'call'."
(defun org-babel-lob-execute (info)
(let ((params (org-babel-merge-params
org-babel-default-header-args
(org-babel-params-from-properties)
(org-babel-parse-header-arguments
(org-babel-clean-text-properties
(concat ":var results=" (mapconcat #'identity info " ")))))))
;; (message "lob-params=%S" params) ;; debugging
(org-babel-execute-src-block nil (list "emacs-lisp" "results" params))))
(provide 'org-babel-lob)