Browse Source

Fix bug with escaping commas in macro arguments

Carsten Dominik 14 years ago
parent
commit
8c0db0b909
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lisp/org-exp.el

+ 1 - 1
lisp/org-exp.el

@@ -2012,7 +2012,7 @@ TYPE must be a string, any of:
 		(while (string-match "\\\\\\'" (car args))
 		  ;; repair bad splits
 		  (setcar (cdr args) (concat (substring (car args) 0 -1)
-					     ";" (nth 1 args)))
+					     "," (nth 1 args)))
 		  (pop args))
 		(push (pop args) args2))
 	      (setq args (nreverse args2))