Browse Source

Reinstating a previous change that got lost in the last merge somehow.

Dan Davison 16 years ago
parent
commit
7eecca6db5
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lisp/org-babel.el

+ 2 - 2
lisp/org-babel.el

@@ -310,7 +310,7 @@ of the following form.  (language body header-arguments-alist)"
   (let* ((lang (org-babel-clean-text-properties (match-string 1)))
          (lang-headers (intern (concat "org-babel-default-header-args:" lang))))
     (list lang
-	  (org-babel-strip-protective-comas (org-babel-clean-text-properties (match-string 4)))
+	  (org-babel-strip-protective-commas (org-babel-clean-text-properties (match-string 4)))
 	  (org-babel-merge-params
 	   org-babel-default-header-args
 	   (if (boundp lang-headers) (eval lang-headers) nil)
@@ -320,7 +320,7 @@ of the following form.  (language body header-arguments-alist)"
   (let* ((lang (org-babel-clean-text-properties (match-string 1)))
          (lang-headers (intern (concat "org-babel-default-header-args:" lang))))
     (list lang
-          (org-babel-strip-protective-comas (org-babel-clean-text-properties (match-string 4)))
+          (org-babel-strip-protective-commas (org-babel-clean-text-properties (match-string 4)))
           (org-combine-plists
            org-babel-default-inline-header-args
            (if (boundp lang-headers) (eval lang-headers) nil)