Macros: Use comma as argument separator

This commit is contained in:
Carsten Dominik 2009-06-23 05:45:35 +02:00
parent 48bdf22482
commit 42fc12f433
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-06-23 Carsten Dominik <carsten.dominik@gmail.com>
* org-exp.el (org-export-preprocess-apply-macros): Switch macro
argument separator back to comma.
2009-06-22 Carsten Dominik <carsten.dominik@gmail.com> 2009-06-22 Carsten Dominik <carsten.dominik@gmail.com>
* org-exp.el (org-infile-export-plist): Fix bug in macro * org-exp.el (org-infile-export-plist): Fix bug in macro

View File

@ -2021,7 +2021,7 @@ TYPE must be a string, any of:
(intern (concat ":" key))))) (intern (concat ":" key)))))
(save-match-data (save-match-data
(when args (when args
(setq args (org-split-string args ";") args2 nil) (setq args (org-split-string args ",[ \t]*") args2 nil)
(while args (while args
(while (string-match "\\\\\\'" (car args)) (while (string-match "\\\\\\'" (car args))
;; repair bad splits ;; repair bad splits