aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Nicolaescu2007-09-22 03:37:47 +0000
committerDan Nicolaescu2007-09-22 03:37:47 +0000
commit2d5a3812de79b75768cda0f209a4f4a84c83e2ad (patch)
treeec32ec7248991224b85852a5022acbcb742d9753
parent4211e4349d5f4af054de23de284b9fff451d3cc0 (diff)
downloademacs-2d5a3812de79b75768cda0f209a4f4a84c83e2ad.tar.gz
emacs-2d5a3812de79b75768cda0f209a4f4a84c83e2ad.zip
(checkdoc-force-docstrings-flag)
(checkdoc-permit-comma-termination-flag): Autoload the safe-local-variable setting.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/emacs-lisp/checkdoc.el4
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6d3909928c8..ab111ceef84 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,9 @@
12007-09-22 Dan Nicolaescu <dann@ics.uci.edu> 12007-09-22 Dan Nicolaescu <dann@ics.uci.edu>
2 2
3 * emacs-lisp/checkdoc.el (checkdoc-force-docstrings-flag)
4 (checkdoc-permit-comma-termination-flag): Autoload the
5 safe-local-variable setting.
6
3 * bookmark.el (bookmark-xemacsp): Remove. 7 * bookmark.el (bookmark-xemacsp): Remove.
4 (bookmark-make): Don't use bookmark-xemacsp, use 8 (bookmark-make): Don't use bookmark-xemacsp, use
5 (featurep 'xemacs) instead. 9 (featurep 'xemacs) instead.
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
233have doc strings." 233have doc strings."
234 :group 'checkdoc 234 :group 'checkdoc
235 :type 'boolean) 235 :type 'boolean)
236(put 'checkdoc-force-docstrings-flag 'safe-local-variable 'booleanp) 236;;;###autoload(put 'checkdoc-force-docstrings-flag 'safe-local-variable 'booleanp)
237 237
238(defcustom checkdoc-force-history-flag t 238(defcustom checkdoc-force-history-flag t
239 "Non-nil means that files should have a History section or ChangeLog file. 239 "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
249it indicates that a modifying clause follows." 249it indicates that a modifying clause follows."
250 :group 'checkdoc 250 :group 'checkdoc
251 :type 'boolean) 251 :type 'boolean)
252(put 'checkdoc-permit-comma-termination-flag 'safe-local-variable 'booleanp) 252;;;###autoload(put 'checkdoc-permit-comma-termination-flag 'safe-local-variable 'booleanp)
253 253
254(defcustom checkdoc-spellcheck-documentation-flag nil 254(defcustom checkdoc-spellcheck-documentation-flag nil
255 "Non-nil means run Ispell on text based on value. 255 "Non-nil means run Ispell on text based on value.