org-export: Fix macro expansion error
* contrib/lisp/org-export.el (org-export-expand-macro): Fix code typo.
This commit is contained in:
parent
7b33d9f56b
commit
57cfa6aa9b
|
@ -3036,7 +3036,7 @@ INFO is a plist holding export options."
|
||||||
;; User's macros are stored in the communication channel with
|
;; User's macros are stored in the communication channel with
|
||||||
;; a ":macro-" prefix.
|
;; a ":macro-" prefix.
|
||||||
(value (org-export-data
|
(value (org-export-data
|
||||||
(plist-get info (intern (format ":macro-%s" key))) val info)))
|
(plist-get info (intern (format ":macro-%s" key))) info)))
|
||||||
;; Replace arguments in VALUE.
|
;; Replace arguments in VALUE.
|
||||||
(let ((s 0) n)
|
(let ((s 0) n)
|
||||||
(while (string-match "\\$\\([0-9]+\\)" value s)
|
(while (string-match "\\$\\([0-9]+\\)" value s)
|
||||||
|
|
Loading…
Reference in New Issue