From f64ebdc2f5621f8cca3c49735c396b5daafa3a87 Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Sat, 26 Jul 2008 03:40:06 +0000 Subject: [PATCH] * org-exp.el (org-export-html-style) (org-export-html-style-extra): Declare as safe-local-variable. --- lisp/org/org-exp.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lisp/org/org-exp.el b/lisp/org/org-exp.el index f24f4a14990..a1baadc884c 100644 --- a/lisp/org/org-exp.el +++ b/lisp/org/org-exp.el @@ -526,6 +526,8 @@ you can \"misuse\" it to add arbitrary text to the header. See also the variable `org-export-html-style-extra'." :group 'org-export-html :type 'string) +;;;###autoload +(put 'org-export-html-style 'safe-local-variable 'stringp) (defcustom org-export-html-style-extra "" "Additional style information for HTML export. @@ -535,6 +537,8 @@ settings of style information, and do not forget to surround the style settings with tags." :group 'org-export-html :type 'string) +;;;###autoload +(put 'org-export-html-style-extra 'safe-local-variable 'stringp) (defcustom org-export-html-title-format "

%s

\n" "Format for typesetting the document title in HTML export." -- 2.11.4.GIT