Browse Source

org-babel: store noweb-expanded code body in 'info' data structure

Dan Davison 15 years ago
parent
commit
210f85ce49
1 changed files with 3 additions and 2 deletions
  1. 3 2
      contrib/babel/lisp/org-babel.el

+ 3 - 2
contrib/babel/lisp/org-babel.el

@@ -176,8 +176,9 @@ the header arguments specified at the source code block."
   (let* ((info (or info (org-babel-get-src-block-info)))
          (lang (first info))
 	 (params (setf (third info) (org-babel-merge-params (third info) params)))
-         (body (if (assoc :noweb params)
-                   (org-babel-expand-noweb-references info) (second info)))
+         (body (setf (second info)
+		     (if (assoc :noweb params)
+			 (org-babel-expand-noweb-references info) (second info))))
          (processed-params (org-babel-process-params params))
          (result-params (third processed-params))
          (result-type (fourth processed-params))