aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorStefan Monnier2009-08-30 13:59:48 +0000
committerStefan Monnier2009-08-30 13:59:48 +0000
commit5fe443deae3d0036a667273ab09971b24ce282d3 (patch)
treed4fa1bf68305bafb315aad992ad169cbbd102f1c /lisp
parent6444d64a4db49e200c5bbe952f3577c2d3e017c7 (diff)
downloademacs-5fe443deae3d0036a667273ab09971b24ce282d3.tar.gz
emacs-5fe443deae3d0036a667273ab09971b24ce282d3.zip
(checkdoc-force-history-flag):
Change default, since most of our files don't have a history. (checkdoc-display-status-buffer): Don't use hidden buffers to show to the user.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/emacs-lisp/checkdoc.el6
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b9a68c3378b..b04653de7c0 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,10 @@
12009-08-30 Stefan Monnier <monnier@iro.umontreal.ca> 12009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
4 Change default, since most of our files don't have a history.
5 (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
6 the user.
7
3 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions): 8 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
4 Add comint-run. 9 Add comint-run.
5 10
diff --git a/lisp/emacs-lisp/checkdoc.el b/lisp/emacs-lisp/checkdoc.el
index 54d1a356259..b49638b8229 100644
--- a/lisp/emacs-lisp/checkdoc.el
+++ b/lisp/emacs-lisp/checkdoc.el
@@ -218,7 +218,7 @@ have doc strings."
218 :type 'boolean) 218 :type 'boolean)
219;;;###autoload(put 'checkdoc-force-docstrings-flag 'safe-local-variable 'booleanp) 219;;;###autoload(put 'checkdoc-force-docstrings-flag 'safe-local-variable 'booleanp)
220 220
221(defcustom checkdoc-force-history-flag t 221(defcustom checkdoc-force-history-flag nil
222 "Non-nil means that files should have a History section or ChangeLog file. 222 "Non-nil means that files should have a History section or ChangeLog file.
223This helps document the evolution of, and recent changes to, the package." 223This helps document the evolution of, and recent changes to, the package."
224 :group 'checkdoc 224 :group 'checkdoc
@@ -511,7 +511,7 @@ the users will view as each check is completed."
511CHECK is a list of four strings stating the current status of each 511CHECK is a list of four strings stating the current status of each
512test; the nth string describes the status of the nth test." 512test; the nth string describes the status of the nth test."
513 (let (temp-buffer-setup-hook) 513 (let (temp-buffer-setup-hook)
514 (with-output-to-temp-buffer " *Checkdoc Status*" 514 (with-output-to-temp-buffer "*Checkdoc Status*"
515 (princ-list 515 (princ-list
516 "Buffer comments and tags: " (nth 0 check) "\n" 516 "Buffer comments and tags: " (nth 0 check) "\n"
517 "Documentation style: " (nth 1 check) "\n" 517 "Documentation style: " (nth 1 check) "\n"
@@ -519,7 +519,7 @@ test; the nth string describes the status of the nth test."
519 "Unwanted Spaces: " (nth 3 check) 519 "Unwanted Spaces: " (nth 3 check)
520 ))) 520 )))
521 (shrink-window-if-larger-than-buffer 521 (shrink-window-if-larger-than-buffer
522 (get-buffer-window " *Checkdoc Status*")) 522 (get-buffer-window "*Checkdoc Status*"))
523 (message nil) 523 (message nil)
524 (sit-for 0)) 524 (sit-for 0))
525 525