diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2007-09-22 03:37:47 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2007-09-22 03:37:47 +0000 |
commit | 2d5a3812de79b75768cda0f209a4f4a84c83e2ad (patch) | |
tree | ec32ec7248991224b85852a5022acbcb742d9753 /lisp/emacs-lisp/checkdoc.el | |
parent | 4211e4349d5f4af054de23de284b9fff451d3cc0 (diff) | |
download | emacs-2d5a3812de79b75768cda0f209a4f4a84c83e2ad.tar.gz emacs-2d5a3812de79b75768cda0f209a4f4a84c83e2ad.tar.bz2 emacs-2d5a3812de79b75768cda0f209a4f4a84c83e2ad.zip |
(checkdoc-force-docstrings-flag)
(checkdoc-permit-comma-termination-flag): Autoload the
safe-local-variable setting.
Diffstat (limited to 'lisp/emacs-lisp/checkdoc.el')
-rw-r--r-- | lisp/emacs-lisp/checkdoc.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/checkdoc.el b/lisp/emacs-lisp/checkdoc.el index 1b32732c59a..edbf382f39e 100644 --- a/lisp/emacs-lisp/checkdoc.el +++ b/lisp/emacs-lisp/checkdoc.el @@ -233,7 +233,7 @@ and that it's good but not required practice to make non user visible items have doc strings." :group 'checkdoc :type 'boolean) -(put 'checkdoc-force-docstrings-flag 'safe-local-variable 'booleanp) +;;;###autoload(put 'checkdoc-force-docstrings-flag 'safe-local-variable 'booleanp) (defcustom checkdoc-force-history-flag t "Non-nil means that files should have a History section or ChangeLog file. @@ -249,7 +249,7 @@ should be used when the first part could stand alone as a sentence, but it indicates that a modifying clause follows." :group 'checkdoc :type 'boolean) -(put 'checkdoc-permit-comma-termination-flag 'safe-local-variable 'booleanp) +;;;###autoload(put 'checkdoc-permit-comma-termination-flag 'safe-local-variable 'booleanp) (defcustom checkdoc-spellcheck-documentation-flag nil "Non-nil means run Ispell on text based on value. |