From e2cd9c398df9f03ae9e5ce03dce050b14a4b8394 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 4 Jul 2012 18:38:48 +0200 Subject: [PATCH] org-export: Modify exclude tags and select tags keywords * contrib/lisp/org-export.el (org-export-options-alist): EXPORT_EXCLUDE_TAGS (resp. EXPORT_SELECT_TAGS) becomes EXCLUDE_TAGS (resp. SELECT_TAGS). EXPORT_ prefix is required for subtree properties relative to export. Thus, this change avoids confusion. --- contrib/lisp/org-export.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/lisp/org-export.el b/contrib/lisp/org-export.el index 38b443ba6..f1f115a5f 100644 --- a/contrib/lisp/org-export.el +++ b/contrib/lisp/org-export.el @@ -142,13 +142,13 @@ (:date "DATE" nil nil t) (:description "DESCRIPTION" nil nil newline) (:email "EMAIL" nil user-mail-address t) - (:exclude-tags "EXPORT_EXCLUDE_TAGS" nil org-export-exclude-tags split) + (:exclude-tags "EXCLUDE_TAGS" nil org-export-exclude-tags split) (:headline-levels nil "H" org-export-headline-levels) (:keywords "KEYWORDS" nil nil space) (:language "LANGUAGE" nil org-export-default-language t) (:preserve-breaks nil "\\n" org-export-preserve-breaks) (:section-numbers nil "num" org-export-with-section-numbers) - (:select-tags "EXPORT_SELECT_TAGS" nil org-export-select-tags split) + (:select-tags "SELECT_TAGS" nil org-export-select-tags split) (:time-stamp-file nil "timestamp" org-export-time-stamp-file) (:title "TITLE" nil nil space) (:with-archived-trees nil "arch" org-export-with-archived-trees)