From b6822edce3a799aa605fc1757232bd720b769ee8 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 10 Oct 2012 13:55:51 +0200 Subject: [PATCH] org-export: Update radio targets after expanding include keywords * contrib/lisp/org-export.el (org-export-as): Update radio targets after expanding include keywords. --- contrib/lisp/org-export.el | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/contrib/lisp/org-export.el b/contrib/lisp/org-export.el index 8315a9759..72709b913 100644 --- a/contrib/lisp/org-export.el +++ b/contrib/lisp/org-export.el @@ -2545,14 +2545,17 @@ Return code as a string." (let* ((info (org-export-install-filters (org-export-get-environment backend subtreep ext-plist))) ;; 2. Get parse tree. Buffer isn't parsed directly. - ;; Instead, a temporary copy is created, where macros - ;; and include keywords are expanded and code blocks + ;; Instead, a temporary copy is created, where include + ;; keywords and macros are expanded and code blocks ;; are evaluated. (tree (let ((buf (or (buffer-file-name (buffer-base-buffer)) (current-buffer)))) (org-export-with-current-buffer-copy (unless noexpand (org-export-expand-include-keyword) + ;; Update radio targets since keyword + ;; inclusion might have added some more. + (org-update-radio-target-regexp) (org-export-expand-macro info) ;; TODO: Setting `org-current-export-file' is ;; required by Org Babel to properly resolve -- 2.11.4.GIT