0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 18:00:49 +00:00

Fix bug with escaping commas in macro arguments

This commit is contained in:
Carsten Dominik 2010-08-14 11:34:39 +02:00
parent d7377a48ee
commit 8c0db0b909

View file

@ -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))