diff options
author | Juri Linkov <juri@jurta.org> | 2009-12-14 21:48:48 +0000 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2009-12-14 21:48:48 +0000 |
commit | 364bc5560ab6f17b1d818e9de0c766f5d375c11c (patch) | |
tree | 639cd0885d0f1ec93afc1033bb9d82b3c0ccb8fa /lisp/org | |
parent | 110de3bb16877fc9ffcf2e89a7d7438315197ac2 (diff) | |
download | emacs-364bc5560ab6f17b1d818e9de0c766f5d375c11c.tar.gz emacs-364bc5560ab6f17b1d818e9de0c766f5d375c11c.tar.bz2 emacs-364bc5560ab6f17b1d818e9de0c766f5d375c11c.zip |
(org-export-html-style-include-default):
Put `safe-local-variable booleanp' on
`org-export-html-style-include-default' instead of mistakenly
duplicate `org-export-html-style'.
Diffstat (limited to 'lisp/org')
-rw-r--r-- | lisp/org/ChangeLog | 7 | ||||
-rw-r--r-- | lisp/org/org-html.el | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog index 7582e8364cf..86c82fc4e5b 100644 --- a/lisp/org/ChangeLog +++ b/lisp/org/ChangeLog @@ -1,3 +1,10 @@ +2009-12-14 Juri Linkov <juri@jurta.org> + + * org-html.el (org-export-html-style-include-default): + Put `safe-local-variable booleanp' on + `org-export-html-style-include-default' instead of mistakenly + duplicate `org-export-html-style'. + 2009-11-20 Carsten Dominik <carsten.dominik@gmail.com> * org-agenda.el (org-agenda-diary-entry-in-org-file): Rebuild diff --git a/lisp/org/org-html.el b/lisp/org/org-html.el index d59f16a0c7f..ad366c6c878 100644 --- a/lisp/org/org-html.el +++ b/lisp/org/org-html.el @@ -160,7 +160,7 @@ your own style information." :group 'org-export-html :type 'boolean) ;;;###autoload -(put 'org-export-html-style 'safe-local-variable 'booleanp) +(put 'org-export-html-style-include-default 'safe-local-variable 'booleanp) (defcustom org-export-html-style "" "Org-wide style definitions for exported HTML files. |