Browse Source

org-babel: include functional-style args in org-babel-get-src-block-info list

This adds a new terminal (sixth) element to the list returned from
org-babel-get-src-block-info. It is used when exporting the code of
"functional style" code blocks, i.e. those in which the name of the
block is followed by a parenthesised argument list (or an empty pair
of parentheses).
Dan Davison 15 years ago
parent
commit
872d9157d9
1 changed files with 14 additions and 7 deletions
  1. 14 7
      contrib/babel/lisp/org-babel.el

+ 14 - 7
contrib/babel/lisp/org-babel.el

@@ -301,12 +301,13 @@ concerned with creating elisp versions of results. "
 
 (defun org-babel-get-src-block-info (&optional header-vars-only)
   "Get information of the current source block.
-Returns a list (language body header-arguments-alist switches
-name).  Unless HEADER-VARS-ONLY is non-nil, any variable
+Returns a list
+ (language body header-arguments-alist switches name function-args).
+Unless HEADER-VARS-ONLY is non-nil, any variable
 references provided in 'function call style' (i.e. in a
 parenthesised argument list following the src block name) are
 added to the header-arguments-alist."
-  (let ((case-fold-search t) head info)
+  (let ((case-fold-search t) head info args)
     (if (setq head (org-babel-where-is-src-block-head))
         (save-excursion
 	  (goto-char head)
@@ -314,12 +315,18 @@ added to the header-arguments-alist."
 	  (forward-line -1)
 	  (when (looking-at "#\\+srcname:[ \t]*\\([^ ()\f\t\n\r\v]+\\)\\(\(\\(.*\\)\)\\|\\)")
 	    (setq info (append info (list (org-babel-clean-text-properties (match-string 1)))))
+	    ;; Note that e.g. "name()" and "name( )" result in ((:var . "")).
+	    ;; We maintain that behaviour, and the resulting non-nil sixth
+	    ;; element is relied upon in org-babel-exp-code to detect a functional-style
+	    ;; block in those cases. However, "name" without any
+	    ;; parentheses would result in the same thing, so we
+	    ;; explicitly avoid that.
+	    (if (setq args (match-string 3))
+		(setq info (append info (list (mapcar (lambda (ref) (cons :var ref))
+						      (org-babel-ref-split-args args))))))
 	    (unless header-vars-only
 	      (setf (third info)
-		    (org-babel-merge-params
-		     (mapcar (lambda (ref) (cons :var ref))
-			     (org-babel-ref-split-args (match-string 3)))
-		     (third info)))))
+		    (org-babel-merge-params (sixth info) (third info)))))
 	  info)
       (if (save-excursion ;; inline source block
             (re-search-backward "[ \f\t\n\r\v]" nil t)