Browse Source

org-export: Fix macro expansion error

* contrib/lisp/org-export.el (org-export-expand-macro): Fix code typo.
Nicolas Goaziou 13 years ago
parent
commit
57cfa6aa9b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      contrib/lisp/org-export.el

+ 1 - 1
contrib/lisp/org-export.el

@@ -3036,7 +3036,7 @@ INFO is a plist holding export options."
 	 ;; User's macros are stored in the communication channel with
 	 ;; a ":macro-" prefix.
 	 (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.
     (let ((s 0) n)
       (while (string-match "\\$\\([0-9]+\\)" value s)