From: Carsten Dominik Date: Sat, 26 Jul 2008 03:40:06 +0000 (+0000) Subject: * org-exp.el (org-export-html-style) X-Git-Tag: emacs-pretest-23.0.90~3870 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f64ebdc2f5621f8cca3c49735c396b5daafa3a87;p=emacs.git * org-exp.el (org-export-html-style) (org-export-html-style-extra): Declare as safe-local-variable. --- 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."