0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-08-24 06:19:43 +00:00

Export: handle include files before processing macros.

* lisp/org-exp.el (org-export-preprocess-string): Handle include files
before processing macros.

Patch by Benny Simonsen.  TINYCHANGE
This commit is contained in:
Carsten Dominik 2011-04-08 12:35:37 +02:00
parent 770c2ddfba
commit a0a526bc3e

View file

@ -1095,16 +1095,16 @@ on this string to produce the exported version."
;; Call the hook
(run-hooks 'org-export-preprocess-hook)
;; Process the macros
(org-export-preprocess-apply-macros)
(run-hooks 'org-export-preprocess-after-macros-hook)
(untabify (point-min) (point-max))
;; Handle include files, and call a hook
(org-export-handle-include-files-recurse)
(run-hooks 'org-export-preprocess-after-include-files-hook)
;; Process the macros
(org-export-preprocess-apply-macros)
(run-hooks 'org-export-preprocess-after-macros-hook)
;; Get rid of archived trees
(org-export-remove-archived-trees archived-trees)