]> git.eshelyaron.com Git - emacs.git/commitdiff
* org-exp.el (org-export-html-style)
authorCarsten Dominik <dominik@science.uva.nl>
Sat, 26 Jul 2008 03:40:06 +0000 (03:40 +0000)
committerCarsten Dominik <dominik@science.uva.nl>
Sat, 26 Jul 2008 03:40:06 +0000 (03:40 +0000)
(org-export-html-style-extra): Declare as safe-local-variable.

lisp/org/org-exp.el

index f24f4a14990a5dc87d6dae56ab067946becdb057..a1baadc884c31b8ff6841cb851d5485f8f43346a 100644 (file)
@@ -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 <style>...</style> tags."
   :group 'org-export-html
   :type 'string)
+;;;###autoload
+(put 'org-export-html-style-extra 'safe-local-variable 'stringp)
 
 (defcustom org-export-html-title-format "<h1 class=\"title\">%s</h1>\n"
   "Format for typesetting the document title in HTML export."