Macros: Fix bug in precessing definitions.
This commit is contained in:
parent
0a116bd65c
commit
e7da07cba5
|
@ -1,5 +1,8 @@
|
|||
2009-06-22 Carsten Dominik <carsten.dominik@gmail.com>
|
||||
|
||||
* org-exp.el (org-infile-export-plist): Fix bug in macro
|
||||
processing.
|
||||
|
||||
* org-agenda.el (org-agenda-clock-out): Update line after clocking
|
||||
out.
|
||||
(org-agenda-highlight-todo): Fix bug with highlighting.
|
||||
|
|
|
@ -722,7 +722,7 @@ modified) list.")
|
|||
(setq p (plist-put
|
||||
p (intern
|
||||
(concat ":macro-" (downcase (match-string 1 val))))
|
||||
(match-string 2)))))
|
||||
(match-string 2 val)))))
|
||||
p))))
|
||||
|
||||
(defun org-export-add-options-to-plist (p options)
|
||||
|
|
Loading…
Reference in New Issue