Explorar o código

Fix bug with escaping commas in macro arguments

Carsten Dominik %!s(int64=15) %!d(string=hai) anos
pai
achega
8c0db0b909
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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))