(update-authors): New target for maintenance
[bpt/emacs.git] / lisp / emacs-lisp / checkdoc.el
1 ;;; checkdoc --- Check documentation strings for style requirements
2
3 ;;; Copyright (C) 1997, 1998 Free Software Foundation
4
5 ;; Author: Eric M. Ludlam <zappo@gnu.org>
6 ;; Version: 0.6.2
7 ;; Keywords: docs, maint, lisp
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
25
26 ;;; Commentary:
27 ;;
28 ;; The Emacs Lisp manual has a nice chapter on how to write
29 ;; documentation strings. Many stylistic suggestions are fairly
30 ;; deterministic and easy to check for syntactically, but also easy
31 ;; to forget. The main checkdoc engine will perform the stylistic
32 ;; checks needed to make sure these styles are remembered.
33 ;;
34 ;; There are two ways to use checkdoc:
35 ;; 1) Periodically use `checkdoc' or `checkdoc-current-buffer'.
36 ;; `checkdoc' is a more interactive version of
37 ;; `checkdoc-current-buffer'
38 ;; 2) Use `checkdoc-minor-mode' to automatically check your
39 ;; documentation whenever you evaluate Lisp code with C-M-x
40 ;; or [menu-bar emacs-lisp eval-buffer]. Additional key-bindings
41 ;; are also provided under C-c ? KEY
42 ;; (require 'checkdoc)
43 ;; (add-hook 'emacs-lisp-mode-hook
44 ;; '(lambda () (checkdoc-minor-mode 1)))
45 ;;
46 ;; Using `checkdoc':
47 ;;
48 ;; The commands `checkdoc' and `checkdoc-ispell' are the top-level
49 ;; entry points to all of the different checks that are available. It
50 ;; breaks examination of your Lisp file into four sections (comments,
51 ;; documentation, messages, and spacing) and indicates its current
52 ;; state in a status buffer.
53 ;;
54 ;; The Comments check examines your headers, footers, and
55 ;; various tags (such as "Code:") to make sure that your code is ready
56 ;; for easy integration into existing systems.
57 ;;
58 ;; The Documentation check deals with documentation strings
59 ;; and their elements that help make Emacs easier to use.
60 ;;
61 ;; The Messages check ensures that the strings displayed in the
62 ;; minibuffer by some commands (such as `error' and `y-or-n-p')
63 ;; are consistent with the Emacs environment.
64 ;;
65 ;; The Spacing check cleans up white-space at the end of lines.
66 ;;
67 ;; The interface while working with documentation and messages is
68 ;; slightly different when being run in the interactive mode. The
69 ;; interface offers several options, including the ability to skip to
70 ;; the next error, or back up to previous errors. Auto-fixing is
71 ;; turned off at this stage, but you can use the `f' or `F' key to fix
72 ;; a given error (if the fix is available.)
73 ;;
74 ;; Auto-fixing:
75 ;;
76 ;; There are four classifications of style errors in terms of how
77 ;; easy they are to fix. They are simple, complex, really complex,
78 ;; and impossible. (Impossible really means that checkdoc does not
79 ;; have a fixing routine yet.) Typically white-space errors are
80 ;; classified as simple, and are auto-fixed by default. Typographic
81 ;; changes are considered complex, and the user is asked if they want
82 ;; the problem fixed before checkdoc makes the change. These changes
83 ;; can be done without asking if `checkdoc-autofix-flag' is properly
84 ;; set. Potentially redundant changes are considered really complex,
85 ;; and the user is always asked before a change is inserted. The
86 ;; variable `checkdoc-autofix-flag' controls how these types of errors
87 ;; are fixed.
88 ;;
89 ;; Spell checking text:
90 ;;
91 ;; The variable `checkdoc-spellcheck-documentation-flag' can be set
92 ;; to customize how spell checking is to be done. Since spell
93 ;; checking can be quite slow, you can optimize how best you want your
94 ;; checking done. The default is 'defun, which spell checks each time
95 ;; `checkdoc-defun' or `checkdoc-eval-defun' is used. Setting to nil
96 ;; prevents spell checking during normal usage.
97 ;; Setting this variable to nil does not mean you cannot take
98 ;; advantage of the spell checking. You can instead use the
99 ;; interactive functions `checkdoc-ispell-*' to check the spelling of
100 ;; your documentation.
101 ;; There is a list of Lisp-specific words which checkdoc will
102 ;; install into Ispell on the fly, but only if Ispell is not already
103 ;; running. Use `ispell-kill-ispell' to make checkdoc restart it with
104 ;; these words enabled.
105 ;;
106 ;; Checking parameters:
107 ;;
108 ;; You might not always want a function to have its parameters listed
109 ;; in order. When this is the case, put the following comment just in
110 ;; front of the documentation string: "; checkdoc-order: nil" This
111 ;; overrides the value of `checkdoc-arguments-in-order-flag'.
112 ;;
113 ;; If you specifically wish to avoid mentioning a parameter of a
114 ;; function in the doc string (such as a hidden parameter, or a
115 ;; parameter which is very obvious like events), you can have checkdoc
116 ;; skip looking for it by putting the following comment just in front
117 ;; of the documentation string: "; checkdoc-params: (args go here)"
118 ;;
119 ;; Checking message strings:
120 ;;
121 ;; The text that follows the `error' and `y-or-n-p' commands is
122 ;; also checked. The documentation for `error' clearly states some
123 ;; simple style rules to follow which checkdoc will auto-fix for you.
124 ;; `y-or-n-p' also states that it should end in a space. I added that
125 ;; it should end in "? " since that is almost always used.
126 ;;
127 ;; Adding your own checks:
128 ;;
129 ;; You can experiment with adding your own checks by setting the
130 ;; hooks `checkdoc-style-hooks' and `checkdoc-comment-style-hooks'.
131 ;; Return a string which is the error you wish to report. The cursor
132 ;; position should be preserved.
133 ;;
134 ;; Error errors:
135 ;;
136 ;; Checkdoc does not always flag errors correctly. There are a
137 ;; couple ways you can coax your file into passing all of checkdoc's
138 ;; tests through buffer local variables.
139 ;;
140 ;; The variable `checkdoc-verb-check-experimental-flag' can be used
141 ;; to turn off the check for verb-voice in case you use words that are
142 ;; not semantically verbs, but are still in the incomplete list.
143 ;;
144 ;; The variable `checkdoc-symbol-words' can be a list of words that
145 ;; happen to also be symbols. This is not a problem for one-word
146 ;; symbols, but if you use a hyphenated word that is also a symbol,
147 ;; then you may need this.
148 ;;
149 ;; The symbol `checkdoc-force-docstrings-flag' can be set to nil if
150 ;; you have many undocumented functions you don't wish to document.
151 ;;
152 ;; See the above section "Checking Parameters" for details about
153 ;; parameter checking.
154 ;;
155 ;; Dependencies:
156 ;;
157 ;; This file requires lisp-mnt (Lisp maintenance routines) for the
158 ;; comment checkers.
159 ;;
160 ;; Requires custom for Emacs v20.
161
162 ;;; TO DO:
163 ;; Hook into the byte compiler on a defun/defvar level to generate
164 ;; warnings in the byte-compiler's warning/error buffer.
165 ;; Better ways to override more typical `eval' functions. Advice
166 ;; might be good but hard to turn on/off as a minor mode.
167 ;;
168 ;;; Maybe Do:
169 ;; Code sweep checks for "forbidden functions", proper use of hooks,
170 ;; proper keybindings, and other items from the manual that are
171 ;; not specifically docstring related. Would this even be useful?
172
173 ;;; Code:
174 (defvar checkdoc-version "0.6.1"
175 "Release version of checkdoc you are currently running.")
176
177 ;; From custom web page for compatibility between versions of custom:
178 (eval-and-compile
179 (condition-case ()
180 (require 'custom)
181 (error nil))
182 (if (and (featurep 'custom) (fboundp 'custom-declare-variable))
183 nil ;; We've got what we needed
184 ;; We have the old custom-library, hack around it!
185 (defmacro defgroup (&rest args)
186 nil)
187 (defmacro custom-add-option (&rest args)
188 nil)
189 (defmacro defcustom (var value doc &rest args)
190 (` (defvar (, var) (, value) (, doc))))))
191
192 (defcustom checkdoc-autofix-flag 'semiautomatic
193 "*Non-nil means attempt auto-fixing of doc strings.
194 If this value is the symbol `query', then the user is queried before
195 any change is made. If the value is `automatic', then all changes are
196 made without asking unless the change is very-complex. If the value
197 is `semiautomatic' or any other value, then simple fixes are made
198 without asking, and complex changes are made by asking the user first.
199 The value `never' is the same as nil, never ask or change anything."
200 :group 'checkdoc
201 :type '(choice (const automatic)
202 (const query)
203 (const never)
204 (other :tag "semiautomatic" semiautomatic)))
205
206 (defcustom checkdoc-bouncy-flag t
207 "*Non-nil means to \"bounce\" to auto-fix locations.
208 Setting this to nil will silently make fixes that require no user
209 interaction. See `checkdoc-autofix-flag' for auto-fixing details."
210 :group 'checkdoc
211 :type 'boolean)
212
213 (defcustom checkdoc-force-docstrings-flag t
214 "*Non-nil means that all checkable definitions should have documentation.
215 Style guide dictates that interactive functions MUST have documentation,
216 and that it's good but not required practice to make non user visible items
217 have doc strings."
218 :group 'checkdoc
219 :type 'boolean)
220
221 (defcustom checkdoc-force-history-flag t
222 "*Non-nil means that files should have a History section or ChangeLog file.
223 This helps document the evolution of, and recent changes to, the package."
224 :group 'checkdoc
225 :type 'boolean)
226
227 (defcustom checkdoc-permit-comma-termination-flag nil
228 "*Non-nil means the first line of a docstring may end with a comma.
229 Ordinarily, a full sentence is required. This may be misleading when
230 there is a substantial caveat to the one-line description -- the comma
231 should be used when the first part could stand alone as a sentence, but
232 it indicates that a modifying clause follows."
233 :group 'checkdoc
234 :type 'boolean)
235
236 (defcustom checkdoc-spellcheck-documentation-flag nil
237 "*Non-nil means run Ispell on text based on value.
238 This is automatically set to nil if Ispell does not exist on your
239 system. Possible values are:
240
241 nil - Don't spell-check during basic style checks.
242 defun - Spell-check when style checking a single defun
243 buffer - Spell-check when style checking the whole buffer
244 interactive - Spell-check during any interactive check.
245 t - Always spell-check"
246 :group 'checkdoc
247 :type '(choice (const nil)
248 (const defun)
249 (const buffer)
250 (const interactive)
251 (const t)))
252
253 (defvar checkdoc-ispell-lisp-words
254 '("alist" "emacs" "etags" "iff" "keymap" "paren" "regexp" "sexp" "xemacs")
255 "List of words that are correct when spell-checking Lisp documentation.")
256
257 (defcustom checkdoc-max-keyref-before-warn 10
258 "*The number of \\ [command-to-keystroke] tokens allowed in a doc string.
259 Any more than this and a warning is generated suggesting that the construct
260 \\ {keymap} be used instead."
261 :group 'checkdoc
262 :type 'integer)
263
264 (defcustom checkdoc-arguments-in-order-flag t
265 "*Non-nil means warn if arguments appear out of order.
266 Setting this to nil will mean only checking that all the arguments
267 appear in the proper form in the documentation, not that they are in
268 the same order as they appear in the argument list. No mention is
269 made in the style guide relating to order."
270 :group 'checkdoc
271 :type 'boolean)
272
273 (defvar checkdoc-style-hooks nil
274 "Hooks called after the standard style check is completed.
275 All hooks must return nil or a string representing the error found.
276 Useful for adding new user implemented commands.
277
278 Each hook is called with two parameters, (DEFUNINFO ENDPOINT).
279 DEFUNINFO is the return value of `checkdoc-defun-info'. ENDPOINT is the
280 location of end of the documentation string.")
281
282 (defvar checkdoc-comment-style-hooks nil
283 "Hooks called after the standard comment style check is completed.
284 Must return nil if no errors are found, or a string describing the
285 problem discovered. This is useful for adding additional checks.")
286
287 (defvar checkdoc-diagnostic-buffer "*Style Warnings*"
288 "Name of warning message buffer.")
289
290 (defvar checkdoc-defun-regexp
291 "^(def\\(un\\|var\\|custom\\|macro\\|const\\|subst\\|advice\\)\
292 \\s-+\\(\\(\\sw\\|\\s_\\)+\\)[ \t\n]+"
293 "Regular expression used to identify a defun.
294 A search leaves the cursor in front of the parameter list.")
295
296 (defcustom checkdoc-verb-check-experimental-flag t
297 "*Non-nil means to attempt to check the voice of the doc string.
298 This check keys off some words which are commonly misused. See the
299 variable `checkdoc-common-verbs-wrong-voice' if you wish to add your own."
300 :group 'checkdoc
301 :type 'boolean)
302
303 (defvar checkdoc-generate-compile-warnings-flag nil
304 "Non-nil means generage warnings in a buffer for browsing.
305 Do not set this by hand, use a function like `checkdoc-current-buffer'
306 with a universal argument.")
307
308 (defcustom checkdoc-symbol-words nil
309 "A list of symbols which also happen to make good words.
310 These symbol-words are ignored when unquoted symbols are searched for.
311 This should be set in an Emacs Lisp file's local variables."
312 :group 'checkdoc
313 :type '(repeat (symbol :tag "Word")))
314
315 (defvar checkdoc-proper-noun-list
316 '("ispell" "xemacs" "emacs" "lisp")
317 "List of words (not capitalized) which should be capitalized.")
318
319 (defvar checkdoc-proper-noun-regexp
320 (let ((expr "\\<\\(")
321 (l checkdoc-proper-noun-list))
322 (while l
323 (setq expr (concat expr (car l) (if (cdr l) "\\|" ""))
324 l (cdr l)))
325 (concat expr "\\)\\>"))
326 "Regular expression derived from `checkdoc-proper-noun-regexp'.")
327
328 (defvar checkdoc-common-verbs-regexp nil
329 "Regular expression derived from `checkdoc-common-verbs-regexp'.")
330
331 (defvar checkdoc-common-verbs-wrong-voice
332 '(("adds" . "add")
333 ("allows" . "allow")
334 ("appends" . "append")
335 ("applies" . "apply")
336 ("arranges" . "arrange")
337 ("brings" . "bring")
338 ("calls" . "call")
339 ("catches" . "catch")
340 ("changes" . "change")
341 ("checks" . "check")
342 ("contains" . "contain")
343 ("creates" . "create")
344 ("destroys" . "destroy")
345 ("disables" . "disable")
346 ("executes" . "execute")
347 ("evals" . "evaluate")
348 ("evaluates" . "evaluate")
349 ("finds" . "find")
350 ("forces" . "force")
351 ("gathers" . "gather")
352 ("generates" . "generate")
353 ("goes" . "go")
354 ("guesses" . "guess")
355 ("highlights" . "highlight")
356 ("holds" . "hold")
357 ("ignores" . "ignore")
358 ("indents" . "indent")
359 ("initializes" . "initialize")
360 ("inserts" . "insert")
361 ("installs" . "install")
362 ("investigates" . "investigate")
363 ("keeps" . "keep")
364 ("kills" . "kill")
365 ("leaves" . "leave")
366 ("lets" . "let")
367 ("loads" . "load")
368 ("looks" . "look")
369 ("makes" . "make")
370 ("marks" . "mark")
371 ("matches" . "match")
372 ("moves" . "move")
373 ("notifies" . "notify")
374 ("offers" . "offer")
375 ("parses" . "parse")
376 ("performs" . "perform")
377 ("prepares" . "prepare")
378 ("prepends" . "prepend")
379 ("reads" . "read")
380 ("raises" . "raise")
381 ("removes" . "remove")
382 ("replaces" . "replace")
383 ("resets" . "reset")
384 ("restores" . "restore")
385 ("returns" . "return")
386 ("runs" . "run")
387 ("saves" . "save")
388 ("says" . "say")
389 ("searches" . "search")
390 ("selects" . "select")
391 ("sets" . "set")
392 ("sex" . "s*x")
393 ("shows" . "show")
394 ("signifies" . "signify")
395 ("sorts" . "sort")
396 ("starts" . "start")
397 ("stores" . "store")
398 ("switches" . "switch")
399 ("tells" . "tell")
400 ("tests" . "test")
401 ("toggles" . "toggle")
402 ("tries" . "try")
403 ("turns" . "turn")
404 ("undoes" . "undo")
405 ("unloads" . "unload")
406 ("unmarks" . "unmark")
407 ("updates" . "update")
408 ("uses" . "use")
409 ("yanks" . "yank")
410 )
411 "Alist of common words in the wrong voice and what should be used instead.
412 Set `checkdoc-verb-check-experimental-flag' to nil to avoid this costly
413 and experimental check. Do not modify this list without setting
414 the value of `checkdoc-common-verbs-regexp' to nil which cause it to
415 be re-created.")
416
417 (defvar checkdoc-syntax-table nil
418 "Syntax table used by checkdoc in document strings.")
419
420 (if checkdoc-syntax-table
421 nil
422 (setq checkdoc-syntax-table (copy-syntax-table emacs-lisp-mode-syntax-table))
423 ;; When dealing with syntax in doc strings, make sure that - are encompassed
424 ;; in words so we can use cheap \\> to get the end of a symbol, not the
425 ;; end of a word in a conglomerate.
426 (modify-syntax-entry ?- "w" checkdoc-syntax-table)
427 )
428
429
430 ;;; Compatibility
431 ;;
432 (if (string-match "X[Ee]macs" emacs-version)
433 (progn
434 (defalias 'checkdoc-make-overlay 'make-extent)
435 (defalias 'checkdoc-overlay-put 'set-extent-property)
436 (defalias 'checkdoc-delete-overlay 'delete-extent)
437 (defalias 'checkdoc-overlay-start 'extent-start)
438 (defalias 'checkdoc-overlay-end 'extent-end)
439 (defalias 'checkdoc-mode-line-update 'redraw-modeline)
440 (defalias 'checkdoc-call-eval-buffer 'eval-buffer)
441 )
442 (defalias 'checkdoc-make-overlay 'make-overlay)
443 (defalias 'checkdoc-overlay-put 'overlay-put)
444 (defalias 'checkdoc-delete-overlay 'delete-overlay)
445 (defalias 'checkdoc-overlay-start 'overlay-start)
446 (defalias 'checkdoc-overlay-end 'overlay-end)
447 (defalias 'checkdoc-mode-line-update 'force-mode-line-update)
448 (defalias 'checkdoc-call-eval-buffer 'eval-current-buffer)
449 )
450
451 ;; Emacs 20 has this handy function.
452 (if (not (fboundp 'princ-list))
453 (defun princ-list (&rest args)
454 "Call `princ' on ARGS."
455 (mapcar 'princ args)))
456
457 ;; Emacs 20s have MULE characters which don't equate to numbers.
458 (if (fboundp 'char=)
459 (defalias 'checkdoc-char= 'char=)
460 (defalias 'checkdoc-char= '=))
461
462 ;; Emacs 19.28 and earlier don't have the handy 'add-to-list function
463 (if (fboundp 'add-to-list)
464
465 (defalias 'checkdoc-add-to-list 'add-to-list)
466
467 (defun checkdoc-add-to-list (list-var element)
468 "Add to the value of LIST-VAR the element ELEMENT if it isn't there yet."
469 (if (not (member element (symbol-value list-var)))
470 (set list-var (cons element (symbol-value list-var)))))
471 )
472
473 ;; To be safe in new Emacsen, we want to read events, not characters
474 (if (fboundp 'read-event)
475 (defalias 'checkdoc-read-event 'read-event)
476 (defalias 'checkdoc-read-event 'read-char))
477
478 ;;; User level commands
479 ;;
480 ;;;###autoload
481 (defun checkdoc ()
482 "Interactivly check the entire buffer for style errors.
483 The current status of the ckeck will be displayed in a buffer which
484 the users will view as each check is completed."
485 (interactive)
486 (let ((status (list "Checking..." "-" "-" "-"))
487 (checkdoc-spellcheck-documentation-flag
488 (member checkdoc-spellcheck-documentation-flag
489 '(buffer interactive t)))
490 ;; if the user set autofix to never, then that breaks the
491 ;; obviously requested asking implied by using this function.
492 ;; Set it to paranoia level.
493 (checkdoc-autofix-flag (if (or (not checkdoc-autofix-flag)
494 (eq checkdoc-autofix-flag 'never))
495 'query
496 checkdoc-autofix-flag))
497 tmp)
498 (checkdoc-display-status-buffer status)
499 ;; check the comments
500 (if (not buffer-file-name)
501 (setcar status "Not checked")
502 (if (checkdoc-file-comments-engine)
503 (setcar status "Errors")
504 (setcar status "Ok")))
505 (setcar (cdr status) "Checking...")
506 (checkdoc-display-status-buffer status)
507 ;; Check the documentation
508 (setq tmp (checkdoc-interactive nil t))
509 (if tmp
510 (setcar (cdr status) (format "%d Errors" (length tmp)))
511 (setcar (cdr status) "Ok"))
512 (setcar (cdr (cdr status)) "Checking...")
513 (checkdoc-display-status-buffer status)
514 ;; Check the message text
515 (if (setq tmp (checkdoc-message-interactive nil t))
516 (setcar (cdr (cdr status)) (format "%d Errors" (length tmp)))
517 (setcar (cdr (cdr status)) "Ok"))
518 (setcar (cdr (cdr (cdr status))) "Checking...")
519 (checkdoc-display-status-buffer status)
520 ;; Rogue spacing
521 (if (condition-case nil
522 (checkdoc-rogue-spaces nil t)
523 (error t))
524 (setcar (cdr (cdr (cdr status))) "Errors")
525 (setcar (cdr (cdr (cdr status))) "Ok"))
526 (checkdoc-display-status-buffer status)))
527
528 (defun checkdoc-display-status-buffer (check)
529 "Display and update the status buffer for the current checkdoc mode.
530 CHECK is a vector stating the current status of each test as an
531 element is the status of that level of teset."
532 (let (temp-buffer-setup-hook)
533 (with-output-to-temp-buffer " *Checkdoc Status*"
534 (princ-list
535 "Buffer comments and tags: " (nth 0 check) "\n"
536 "Documentation style: " (nth 1 check) "\n"
537 "Message/Query text style: " (nth 2 check) "\n"
538 "Unwanted Spaces: " (nth 3 check)
539 )))
540 (shrink-window-if-larger-than-buffer
541 (get-buffer-window " *Checkdoc Status*"))
542 (message nil)
543 (sit-for 0))
544
545 ;;;###autoload
546 (defun checkdoc-interactive (&optional start-here showstatus)
547 "Interactively check the current buffer for doc string errors.
548 Prefix argument START-HERE will start the checking from the current
549 point, otherwise the check starts at the beginning of the current
550 buffer. Allows navigation forward and backwards through document
551 errors. Does not check for comment or space warnings.
552 Optional argument SHOWSTATUS indicates that we should update the
553 checkdoc status window instead of the usual behavior."
554 (interactive "P")
555 (let ((checkdoc-spellcheck-documentation-flag
556 (member checkdoc-spellcheck-documentation-flag
557 '(interactive t))))
558 (checkdoc-interactive-loop start-here showstatus 'checkdoc-next-error)))
559
560 ;;;###autoload
561 (defun checkdoc-message-interactive (&optional start-here showstatus)
562 "Interactively check the current buffer for message string errors.
563 Prefix argument START-HERE will start the checking from the current
564 point, otherwise the check starts at the beginning of the current
565 buffer. Allows navigation forward and backwards through document
566 errors. Does not check for comment or space warnings.
567 Optional argument SHOWSTATUS indicates that we should update the
568 checkdoc status window instead of the usual behavior."
569 (interactive "P")
570 (let ((checkdoc-spellcheck-documentation-flag
571 (member checkdoc-spellcheck-documentation-flag
572 '(interactive t))))
573 (checkdoc-interactive-loop start-here showstatus
574 'checkdoc-next-message-error)))
575
576 (defun checkdoc-interactive-loop (start-here showstatus findfunc)
577 "Interactivly loop over all errors that can be found by a given method.
578 Searching starts at START-HERE. SHOWSTATUS expresses the verbosity
579 of the search, and wether ending the search will auto-exit this function.
580 FINDFUNC is a symbol representing a function that will position the
581 cursor, and return error message text to present the the user. It is
582 assumed that the cursor will stop just before a major sexp, which will
583 be highlighted to present the user with feedback as to the offending
584 style."
585 ;; Determine where to start the test
586 (let* ((begin (prog1 (point)
587 (if (not start-here) (goto-char (point-min)))))
588 ;; Assign a flag to spellcheck flag
589 (checkdoc-spellcheck-documentation-flag
590 (member checkdoc-spellcheck-documentation-flag
591 '(buffer interactive t)))
592 ;; Fetch the error list
593 (err-list (list (funcall findfunc nil)))
594 (cdo nil)
595 (returnme nil)
596 c)
597 (save-window-excursion
598 (if (not (car err-list)) (setq err-list nil))
599 ;; Include whatever function point is in for good measure.
600 (beginning-of-defun)
601 (while err-list
602 (goto-char (cdr (car err-list)))
603 ;; The cursor should be just in front of the offending doc string
604 (if (stringp (car (car err-list)))
605 (setq cdo (save-excursion (checkdoc-make-overlay
606 (point) (progn (forward-sexp 1)
607 (point)))))
608 (setq cdo (checkdoc-make-overlay
609 (checkdoc-error-start (car (car err-list)))
610 (checkdoc-error-end (car (car err-list))))))
611 (unwind-protect
612 (progn
613 (checkdoc-overlay-put cdo 'face 'highlight)
614 ;; Make sure the whole doc string is visible if possible.
615 (sit-for 0)
616 (if (and (looking-at "\"")
617 (not (pos-visible-in-window-p
618 (save-excursion (forward-sexp 1) (point))
619 (selected-window))))
620 (let ((l (count-lines (point)
621 (save-excursion
622 (forward-sexp 1) (point)))))
623 (if (> l (window-height))
624 (recenter 1)
625 (recenter (/ (- (window-height) l) 2))))
626 (recenter))
627 (message "%s (C-h,%se,n,p,q)" (checkdoc-error-text
628 (car (car err-list)))
629 (if (checkdoc-error-unfixable (car (car err-list)))
630 "" "f,"))
631 (save-excursion
632 (goto-char (checkdoc-error-start (car (car err-list))))
633 (if (not (pos-visible-in-window-p))
634 (recenter (- (window-height) 2)))
635 (setq c (checkdoc-read-event)))1
636 (if (not (integerp c)) (setq c ??))
637 (cond
638 ;; Exit condition
639 ((checkdoc-char= c ?\C-g) (signal 'quit nil))
640 ;; Request an auto-fix
641 ((or (checkdoc-char= c ?y) (checkdoc-char= c ?f))
642 (checkdoc-delete-overlay cdo)
643 (setq cdo nil)
644 (goto-char (cdr (car err-list)))
645 ;; `automatic-then-never' tells the autofix function
646 ;; to only allow one fix to be automatic. The autofix
647 ;; function will than set the flag to 'never, allowing
648 ;; the checker to return a different error.
649 (let ((checkdoc-autofix-flag 'automatic-then-never)
650 (fixed nil))
651 (funcall findfunc t)
652 (setq fixed (not (eq checkdoc-autofix-flag
653 'automatic-then-never)))
654 (if (not fixed)
655 (progn
656 (message "A Fix was not available.")
657 (sit-for 2))
658 (setq err-list (cdr err-list))))
659 (beginning-of-defun)
660 (let ((pe (car err-list))
661 (ne (funcall findfunc nil)))
662 (if ne
663 (setq err-list (cons ne err-list))
664 (cond ((not err-list)
665 (message "No More Stylistic Errors.")
666 (sit-for 2))
667 (t
668 (message
669 "No Additional style errors. Continuing...")
670 (sit-for 2))))))
671 ;; Move to the next error (if available)
672 ((or (checkdoc-char= c ?n) (checkdoc-char= c ?\ ))
673 (let ((ne (funcall findfunc nil)))
674 (if (not ne)
675 (if showstatus
676 (setq returnme err-list
677 err-list nil)
678 (if (not err-list)
679 (message "No More Stylistic Errors.")
680 (message "No Additional style errors. Continuing..."))
681 (sit-for 2))
682 (setq err-list (cons ne err-list)))))
683 ;; Go backwards in the list of errors
684 ((or (checkdoc-char= c ?p) (checkdoc-char= c ?\C-?))
685 (if (/= (length err-list) 1)
686 (progn
687 (setq err-list (cdr err-list))
688 (goto-char (cdr (car err-list)))
689 (beginning-of-defun))
690 (message "No Previous Errors.")
691 (sit-for 2)))
692 ;; Edit the buffer recursively.
693 ((checkdoc-char= c ?e)
694 (checkdoc-recursive-edit
695 (checkdoc-error-text (car (car err-list))))
696 (checkdoc-delete-overlay cdo)
697 (setq err-list (cdr err-list)) ;back up the error found.
698 (beginning-of-defun)
699 (let ((ne (funcall findfunc nil)))
700 (if (not ne)
701 (if showstatus
702 (setq returnme err-list
703 err-list nil)
704 (message "No More Stylistic Errors.")
705 (sit-for 2))
706 (setq err-list (cons ne err-list)))))
707 ;; Quit checkdoc
708 ((checkdoc-char= c ?q)
709 (setq returnme err-list
710 err-list nil
711 begin (point)))
712 ;; Goofy s tuff
713 (t
714 (if (get-buffer-window "*Checkdoc Help*")
715 (progn
716 (delete-window (get-buffer-window "*Checkdoc Help*"))
717 (kill-buffer "*Checkdoc Help*"))
718 (with-output-to-temp-buffer "*Checkdoc Help*"
719 (princ-list
720 "Checkdoc Keyboard Summary:\n"
721 (if (checkdoc-error-unfixable (car (car err-list)))
722 ""
723 (concat
724 "f, y - auto Fix this warning without asking (if\
725 available.)\n"
726 " Very complex operations will still query.\n")
727 )
728 "e - Enter recursive Edit. Press C-M-c to exit.\n"
729 "SPC, n - skip to the Next error.\n"
730 "DEL, p - skip to the Previous error.\n"
731 "q - Quit checkdoc.\n"
732 "C-h - Toggle this help buffer."))
733 (shrink-window-if-larger-than-buffer
734 (get-buffer-window "*Checkdoc Help*"))))))
735 (if cdo (checkdoc-delete-overlay cdo)))))
736 (goto-char begin)
737 (if (get-buffer "*Checkdoc Help*") (kill-buffer "*Checkdoc Help*"))
738 (message "Checkdoc: Done.")
739 returnme))
740
741 (defun checkdoc-next-error (enable-fix)
742 "Find and return the next checkdoc error list, or nil.
743 Only documentation strings are checked.
744 Add error vector is of the form (WARNING . POSITION) where WARNING
745 is the warning text, and POSITION is the point in the buffer where the
746 error was found. We can use points and not markers because we promise
747 not to edit the buffer before point without re-executing this check.
748 Argument ENABLE-FIX will enable auto-fixing while looking for the next
749 error. This argument assumes that the cursor is already positioned to
750 perform the fix."
751 (if enable-fix
752 (checkdoc-this-string-valid)
753 (let ((msg nil) (p (point))
754 (checkdoc-autofix-flag nil))
755 (condition-case nil
756 (while (and (not msg) (checkdoc-next-docstring))
757 (message "Searching for doc string error...%d%%"
758 (/ (* 100 (point)) (point-max)))
759 (if (setq msg (checkdoc-this-string-valid))
760 (setq msg (cons msg (point)))))
761 ;; Quit.. restore position, Other errors, leave alone
762 (quit (goto-char p)))
763 msg)))
764
765 (defun checkdoc-next-message-error (enable-fix)
766 "Find and return the next checkdoc mesasge related error list, or nil.
767 Only text for error and `y-or-n-p' strings are checked. See
768 `checkdoc-next-error' for details on the return value.
769 Argument ENABLE-FIX turns on the auto-fix feature. This argument
770 assumes that the cursor is already positioned to perform the fix."
771 (if enable-fix
772 (checkdoc-message-text-engine)
773 (let ((msg nil) (p (point)) (type nil)
774 (checkdoc-autofix-flag nil))
775 (condition-case nil
776 (while (and (not msg)
777 (setq type
778 (checkdoc-message-text-next-string (point-max))))
779 (message "Searching for message string error...%d%%"
780 (/ (* 100 (point)) (point-max)))
781 (if (setq msg (checkdoc-message-text-engine type))
782 (setq msg (cons msg (point)))))
783 ;; Quit.. restore position, Other errors, leave alone
784 (quit (goto-char p)))
785 msg)))
786
787 (defun checkdoc-recursive-edit (msg)
788 "Enter recursive edit to permit a user to fix some error checkdoc has found.
789 MSG is the error that was found, which is displayed in a help buffer."
790 (with-output-to-temp-buffer "*Checkdoc Help*"
791 (princ-list
792 "Error message:\n " msg
793 "\n\nEdit to fix this problem, and press C-M-c to continue."))
794 (shrink-window-if-larger-than-buffer
795 (get-buffer-window "*Checkdoc Help*"))
796 (message "When you're done editing press C-M-c to continue.")
797 (unwind-protect
798 (recursive-edit)
799 (if (get-buffer-window "*Checkdoc Help*")
800 (progn
801 (delete-window (get-buffer-window "*Checkdoc Help*"))
802 (kill-buffer "*Checkdoc Help*")))))
803
804 ;;;###autoload
805 (defun checkdoc-eval-current-buffer ()
806 "Evaluate and check documentation for the current buffer.
807 Evaluation is done first because good documentation for something that
808 doesn't work is just not useful. Comments, doc strings, and rogue
809 spacing are all verified."
810 (interactive)
811 (checkdoc-call-eval-buffer nil)
812 (checkdoc-current-buffer t))
813
814 ;;;###autoload
815 (defun checkdoc-current-buffer (&optional take-notes)
816 "Check current buffer for document, comment, error style, and rogue spaces.
817 With a prefix argument (in Lisp, the argument TAKE-NOTES),
818 store all errors found in a warnings buffer,
819 otherwise stop after the first error."
820 (interactive "P")
821 (if (interactive-p) (message "Checking buffer for style..."))
822 ;; Assign a flag to spellcheck flag
823 (let ((checkdoc-spellcheck-documentation-flag
824 (memq checkdoc-spellcheck-documentation-flag '(buffer t)))
825 (checkdoc-autofix-flag (if take-notes 'never
826 checkdoc-autofix-flag))
827 (checkdoc-generate-compile-warnings-flag
828 (or take-notes checkdoc-generate-compile-warnings-flag)))
829 (if take-notes
830 (checkdoc-start-section "checkdoc-current-buffer"))
831 ;; every test is responsible for returning the cursor.
832 (or (and buffer-file-name ;; only check comments in a file
833 (checkdoc-comments))
834 (checkdoc-start)
835 (checkdoc-message-text)
836 (checkdoc-rogue-spaces)
837 (not (interactive-p))
838 (if take-notes (checkdoc-show-diagnostics))
839 (message "Checking buffer for style...Done."))))
840
841 ;;;###autoload
842 (defun checkdoc-start (&optional take-notes)
843 "Start scanning the current buffer for documentation string style errors.
844 Only documentation strings are checked.
845 Use `checkdoc-continue' to continue checking if an error cannot be fixed.
846 Prefix argument TAKE-NOTES means to collect all the warning messages into
847 a separate buffer."
848 (interactive "P")
849 (let ((p (point)))
850 (goto-char (point-min))
851 (if (and take-notes (interactive-p))
852 (checkdoc-start-section "checkdoc-start"))
853 (checkdoc-continue take-notes)
854 ;; Go back since we can't be here without success above.
855 (goto-char p)
856 nil))
857
858 ;;;###autoload
859 (defun checkdoc-continue (&optional take-notes)
860 "Find the next doc string in the current buffer which has a style error.
861 Prefix argument TAKE-NOTES means to continue through the whole buffer and
862 save warnings in a separate buffer. Second optional argument START-POINT
863 is the starting location. If this is nil, `point-min' is used instead."
864 (interactive "P")
865 (let ((wrong nil) (msg nil) (errors nil)
866 ;; Assign a flag to spellcheck flag
867 (checkdoc-spellcheck-documentation-flag
868 (member checkdoc-spellcheck-documentation-flag
869 '(buffer t)))
870 (checkdoc-autofix-flag (if take-notes 'never
871 checkdoc-autofix-flag))
872 (checkdoc-generate-compile-warnings-flag
873 (or take-notes checkdoc-generate-compile-warnings-flag)))
874 (save-excursion
875 ;; If we are taking notes, encompass the whole buffer, otherwise
876 ;; the user is navigating down through the buffer.
877 (while (and (not wrong) (checkdoc-next-docstring))
878 ;; OK, let's look at the doc string.
879 (setq msg (checkdoc-this-string-valid))
880 (if msg (setq wrong (point)))))
881 (if wrong
882 (progn
883 (goto-char wrong)
884 (if (not take-notes)
885 (error (checkdoc-error-text msg)))))
886 (checkdoc-show-diagnostics)
887 (if (interactive-p)
888 (message "No style warnings."))))
889
890 (defun checkdoc-next-docstring ()
891 "Move to the next doc string after point, and return t.
892 Return nil if there are no more doc strings."
893 (if (not (re-search-forward checkdoc-defun-regexp nil t))
894 nil
895 ;; search drops us after the identifier. The next sexp is either
896 ;; the argument list or the value of the variable. skip it.
897 (forward-sexp 1)
898 (skip-chars-forward " \n\t")
899 t))
900
901 ;;; ###autoload
902 (defun checkdoc-comments (&optional take-notes)
903 "Find missing comment sections in the current Emacs Lisp file.
904 Prefix argument TAKE-NOTES non-nil means to save warnings in a
905 separate buffer. Otherwise print a message. This returns the error
906 if there is one."
907 (interactive "P")
908 (if take-notes (checkdoc-start-section "checkdoc-comments"))
909 (if (not buffer-file-name)
910 (error "Can only check comments for a file buffer"))
911 (let* ((checkdoc-spellcheck-documentation-flag
912 (member checkdoc-spellcheck-documentation-flag
913 '(buffer t)))
914 (checkdoc-autofix-flag (if take-notes 'never checkdoc-autofix-flag))
915 (e (checkdoc-file-comments-engine))
916 (checkdoc-generate-compile-warnings-flag
917 (or take-notes checkdoc-generate-compile-warnings-flag)))
918 (if e (error (checkdoc-error-text e)))
919 (checkdoc-show-diagnostics)
920 e))
921
922 ;;;###autoload
923 (defun checkdoc-rogue-spaces (&optional take-notes interact)
924 "Find extra spaces at the end of lines in the current file.
925 Prefix argument TAKE-NOTES non-nil means to save warnings in a
926 separate buffer. Otherwise print a message. This returns the error
927 if there is one.
928 Optional argument INTERACT permits more interactive fixing."
929 (interactive "P")
930 (if take-notes (checkdoc-start-section "checkdoc-rogue-spaces"))
931 (let* ((checkdoc-autofix-flag (if take-notes 'never checkdoc-autofix-flag))
932 (e (checkdoc-rogue-space-check-engine nil nil interact))
933 (checkdoc-generate-compile-warnings-flag
934 (or take-notes checkdoc-generate-compile-warnings-flag)))
935 (if (not (interactive-p))
936 e
937 (if e
938 (message (checkdoc-error-text e))
939 (checkdoc-show-diagnostics)
940 (message "Space Check: done.")))))
941
942 ;;;###autoload
943 (defun checkdoc-message-text (&optional take-notes)
944 "Scan the buffer for occurrences of the error function, and verify text.
945 Optional argument TAKE-NOTES causes all errors to be logged."
946 (interactive "P")
947 (if take-notes (checkdoc-start-section "checkdoc-message-text"))
948 (let* ((p (point)) e
949 (checkdoc-autofix-flag (if take-notes 'never checkdoc-autofix-flag))
950 (checkdoc-generate-compile-warnings-flag
951 (or take-notes checkdoc-generate-compile-warnings-flag)))
952 (setq e (checkdoc-message-text-search))
953 (if (not (interactive-p))
954 e
955 (if e
956 (error (checkdoc-error-text e))
957 (checkdoc-show-diagnostics)))
958 (goto-char p))
959 (if (interactive-p) (message "Checking interactive message text...done.")))
960
961 ;;;###autoload
962 (defun checkdoc-eval-defun ()
963 "Evaluate the current form with `eval-defun' and check its documentation.
964 Evaluation is done first so the form will be read before the
965 documentation is checked. If there is a documentation error, then the display
966 of what was evaluated will be overwritten by the diagnostic message."
967 (interactive)
968 (eval-defun nil)
969 (checkdoc-defun))
970
971 ;;;###autoload
972 (defun checkdoc-defun (&optional no-error)
973 "Examine the doc string of the function or variable under point.
974 Call `error' if the doc string has problems. If NO-ERROR is
975 non-nil, then do not call error, but call `message' instead.
976 If the doc string passes the test, then check the function for rogue white
977 space at the end of each line."
978 (interactive)
979 (save-excursion
980 (beginning-of-defun)
981 (if (not (looking-at checkdoc-defun-regexp))
982 ;; I found this more annoying than useful.
983 ;;(if (not no-error)
984 ;; (message "Cannot check this sexp's doc string."))
985 nil
986 ;; search drops us after the identifier. The next sexp is either
987 ;; the argument list or the value of the variable. skip it.
988 (goto-char (match-end 0))
989 (forward-sexp 1)
990 (skip-chars-forward " \n\t")
991 (let* ((checkdoc-spellcheck-documentation-flag
992 (member checkdoc-spellcheck-documentation-flag
993 '(defun t)))
994 (beg (save-excursion (beginning-of-defun) (point)))
995 (end (save-excursion (end-of-defun) (point)))
996 (msg (checkdoc-this-string-valid)))
997 (if msg (if no-error
998 (message (checkdoc-error-text msg))
999 (error (checkdoc-error-text msg)))
1000 (setq msg (checkdoc-message-text-search beg end))
1001 (if msg (if no-error
1002 (message (checkdoc-error-text msg))
1003 (error (checkdoc-error-text msg)))
1004 (setq msg (checkdoc-rogue-space-check-engine beg end))
1005 (if msg (if no-error
1006 (message (checkdoc-error-text msg))
1007 (error (checkdoc-error-text msg))))))
1008 (if (interactive-p) (message "Checkdoc: done."))))))
1009
1010 ;;; Ispell interface for forcing a spell check
1011 ;;
1012
1013 ;;;###autoload
1014 (defun checkdoc-ispell (&optional take-notes)
1015 "Check the style and spelling of everything interactively.
1016 Calls `checkdoc' with spell-checking turned on.
1017 Prefix argument TAKE-NOTES is the same as for `checkdoc'"
1018 (interactive)
1019 (let ((checkdoc-spellcheck-documentation-flag t))
1020 (call-interactively 'checkdoc nil current-prefix-arg)))
1021
1022 ;;;###autoload
1023 (defun checkdoc-ispell-current-buffer (&optional take-notes)
1024 "Check the style and spelling of the current buffer.
1025 Calls `checkdoc-current-buffer' with spell-checking turned on.
1026 Prefix argument TAKE-NOTES is the same as for `checkdoc-current-buffer'"
1027 (interactive)
1028 (let ((checkdoc-spellcheck-documentation-flag t))
1029 (call-interactively 'checkdoc-current-buffer nil current-prefix-arg)))
1030
1031 ;;;###autoload
1032 (defun checkdoc-ispell-interactive (&optional take-notes)
1033 "Check the style and spelling of the current buffer interactively.
1034 Calls `checkdoc-interactive' with spell-checking turned on.
1035 Prefix argument TAKE-NOTES is the same as for `checkdoc-interactive'"
1036 (interactive)
1037 (let ((checkdoc-spellcheck-documentation-flag t))
1038 (call-interactively 'checkdoc-interactive nil current-prefix-arg)))
1039
1040 ;;;###autoload
1041 (defun checkdoc-ispell-message-interactive (&optional take-notes)
1042 "Check the style and spelling of message text interactively.
1043 Calls `checkdoc-message-interactive' with spell-checking turned on.
1044 Prefix argument TAKE-NOTES is the same as for `checkdoc-message-interactive'"
1045 (interactive)
1046 (let ((checkdoc-spellcheck-documentation-flag t))
1047 (call-interactively 'checkdoc-message-interactive nil current-prefix-arg)))
1048
1049 ;;;###autoload
1050 (defun checkdoc-ispell-message-text (&optional take-notes)
1051 "Check the style and spelling of message text interactively.
1052 Calls `checkdoc-message-text' with spell-checking turned on.
1053 Prefix argument TAKE-NOTES is the same as for `checkdoc-message-text'"
1054 (interactive)
1055 (let ((checkdoc-spellcheck-documentation-flag t))
1056 (call-interactively 'checkdoc-message-text nil current-prefix-arg)))
1057
1058 ;;;###autoload
1059 (defun checkdoc-ispell-start (&optional take-notes)
1060 "Check the style and spelling of the current buffer.
1061 Calls `checkdoc-start' with spell-checking turned on.
1062 Prefix argument TAKE-NOTES is the same as for `checkdoc-start'"
1063 (interactive)
1064 (let ((checkdoc-spellcheck-documentation-flag t))
1065 (call-interactively 'checkdoc-start nil current-prefix-arg)))
1066
1067 ;;;###autoload
1068 (defun checkdoc-ispell-continue (&optional take-notes)
1069 "Check the style and spelling of the current buffer after point.
1070 Calls `checkdoc-continue' with spell-checking turned on.
1071 Prefix argument TAKE-NOTES is the same as for `checkdoc-continue'"
1072 (interactive)
1073 (let ((checkdoc-spellcheck-documentation-flag t))
1074 (call-interactively 'checkdoc-continue nil current-prefix-arg)))
1075
1076 ;;;###autoload
1077 (defun checkdoc-ispell-comments (&optional take-notes)
1078 "Check the style and spelling of the current buffer's comments.
1079 Calls `checkdoc-comments' with spell-checking turned on.
1080 Prefix argument TAKE-NOTES is the same as for `checkdoc-comments'"
1081 (interactive)
1082 (let ((checkdoc-spellcheck-documentation-flag t))
1083 (call-interactively 'checkdoc-comments nil current-prefix-arg)))
1084
1085 ;;;###autoload
1086 (defun checkdoc-ispell-defun (&optional take-notes)
1087 "Check the style and spelling of the current defun with Ispell.
1088 Calls `checkdoc-defun' with spell-checking turned on.
1089 Prefix argument TAKE-NOTES is the same as for `checkdoc-defun'"
1090 (interactive)
1091 (let ((checkdoc-spellcheck-documentation-flag t))
1092 (call-interactively 'checkdoc-defun nil current-prefix-arg)))
1093
1094 ;;; Error Management
1095 ;;
1096 ;; Errors returned from checkdoc functions can have various
1097 ;; features and behaviors, so we need some ways of specifying
1098 ;; them, and making them easier to use in the wacked-out interfaces
1099 ;; people are requesting
1100 (defun checkdoc-create-error (text start end &optional unfixable)
1101 "Used to create the return error text returned from all engines.
1102 TEXT is the descriptive text of the error. START and END define the region
1103 it is sensible to highlight when describing the problem.
1104 Optional argument UNFIXABLE means that the error has no auto-fix available.
1105
1106 A list of the form (TEXT START END UNFIXABLE) is returned if we are not
1107 generating a buffered list of errors."
1108 (if checkdoc-generate-compile-warnings-flag
1109 (progn (checkdoc-error start text)
1110 nil)
1111 (list text start end unfixable)))
1112
1113 (defun checkdoc-error-text (err)
1114 "Return the text specified in the checkdoc ERR."
1115 ;; string-p part is for backwards compatibility
1116 (if (stringp err) err (car err)))
1117
1118 (defun checkdoc-error-start (err)
1119 "Return the start point specified in the checkdoc ERR."
1120 ;; string-p part is for backwards compatibility
1121 (if (stringp err) nil (nth 1 err)))
1122
1123 (defun checkdoc-error-end (err)
1124 "Return the end point specified in the checkdoc ERR."
1125 ;; string-p part is for backwards compatibility
1126 (if (stringp err) nil (nth 2 err)))
1127
1128 (defun checkdoc-error-unfixable (err)
1129 "Return the t if we cannot autofix the error specified in the checkdoc ERR."
1130 ;; string-p part is for backwards compatibility
1131 (if (stringp err) nil (nth 3 err)))
1132
1133 ;;; Minor Mode specification
1134 ;;
1135 (defvar checkdoc-minor-mode nil
1136 "Non-nil in `emacs-lisp-mode' for automatic documentation checking.")
1137 (make-variable-buffer-local 'checkdoc-minor-mode)
1138
1139 (checkdoc-add-to-list 'minor-mode-alist '(checkdoc-minor-mode " CDoc"))
1140
1141 (defvar checkdoc-minor-keymap
1142 (let ((map (make-sparse-keymap))
1143 (pmap (make-sparse-keymap)))
1144 ;; Override some bindings
1145 (define-key map "\C-\M-x" 'checkdoc-eval-defun)
1146 (define-key map "\C-x`" 'checkdoc-continue)
1147 (if (not (string-match "XEmacs" emacs-version))
1148 (define-key map [menu-bar emacs-lisp eval-buffer]
1149 'checkdoc-eval-current-buffer))
1150 ;; Add some new bindings under C-c ?
1151 (define-key pmap "x" 'checkdoc-defun)
1152 (define-key pmap "X" 'checkdoc-ispell-defun)
1153 (define-key pmap "`" 'checkdoc-continue)
1154 (define-key pmap "~" 'checkdoc-ispell-continue)
1155 (define-key pmap "s" 'checkdoc-start)
1156 (define-key pmap "S" 'checkdoc-ispell-start)
1157 (define-key pmap "d" 'checkdoc)
1158 (define-key pmap "D" 'checkdoc-ispell)
1159 (define-key pmap "b" 'checkdoc-current-buffer)
1160 (define-key pmap "B" 'checkdoc-ispell-current-buffer)
1161 (define-key pmap "e" 'checkdoc-eval-current-buffer)
1162 (define-key pmap "m" 'checkdoc-message-text)
1163 (define-key pmap "M" 'checkdoc-ispell-message-text)
1164 (define-key pmap "c" 'checkdoc-comments)
1165 (define-key pmap "C" 'checkdoc-ispell-comments)
1166 (define-key pmap " " 'checkdoc-rogue-spaces)
1167
1168 ;; bind our submap into map
1169 (define-key map "\C-c?" pmap)
1170 map)
1171 "Keymap used to override evaluation key-bindings for documentation checking.")
1172
1173 ;; Add in a menubar with easy-menu
1174
1175 (if checkdoc-minor-keymap
1176 (easy-menu-define
1177 checkdoc-minor-menu checkdoc-minor-keymap "Checkdoc Minor Mode Menu"
1178 '("CheckDoc"
1179 ["Interactive Buffer Style Check" checkdoc t]
1180 ["Interactive Buffer Style and Spelling Check" checkdoc-ispell t]
1181 ["Check Buffer" checkdoc-current-buffer t]
1182 ["Check and Spell Buffer" checkdoc-ispell-current-buffer t]
1183 "---"
1184 ["Interactive Style Check" checkdoc-interactive t]
1185 ["Interactive Style and Spelling Check" checkdoc-ispell-interactive t]
1186 ["Find First Style Error" checkdoc-start t]
1187 ["Find First Style or Spelling Error" checkdoc-ispell-start t]
1188 ["Next Style Error" checkdoc-continue t]
1189 ["Next Style or Spelling Error" checkdoc-ispell-continue t]
1190 ["Interactive Message Text Style Check" checkdoc-message-interactive t]
1191 ["Interactive Message Text Style and Spelling Check"
1192 checkdoc-ispell-message-interactive t]
1193 ["Check Message Text" checkdoc-message-text t]
1194 ["Check and Spell Message Text" checkdoc-ispell-message-text t]
1195 ["Check Comment Style" checkdoc-comments buffer-file-name]
1196 ["Check Comment Style and Spelling" checkdoc-ispell-comments
1197 buffer-file-name]
1198 ["Check for Rogue Spaces" checkdoc-rogue-spaces t]
1199 "---"
1200 ["Check Defun" checkdoc-defun t]
1201 ["Check and Spell Defun" checkdoc-ispell-defun t]
1202 ["Check and Evaluate Defun" checkdoc-eval-defun t]
1203 ["Check and Evaluate Buffer" checkdoc-eval-current-buffer t]
1204 )))
1205 ;; XEmacs requires some weird stuff to add this menu in a minor mode.
1206 ;; What is it?
1207
1208 ;; Allow re-insertion of a new keymap
1209 (let ((a (assoc 'checkdoc-minor-mode minor-mode-map-alist)))
1210 (if a
1211 (setcdr a checkdoc-minor-keymap)
1212 (checkdoc-add-to-list 'minor-mode-map-alist (cons 'checkdoc-minor-mode
1213 checkdoc-minor-keymap))))
1214
1215 ;;;###autoload
1216 (defun checkdoc-minor-mode (&optional arg)
1217 "Toggle Checkdoc minor mode, a mode for checking Lisp doc strings.
1218 With prefix ARG, turn Checkdoc minor mode on iff ARG is positive.
1219
1220 In Checkdoc minor mode, the usual bindings for `eval-defun' which is
1221 bound to \\<checkdoc-minor-keymap> \\[checkdoc-eval-defun] and `checkdoc-eval-current-buffer' are overridden to include
1222 checking of documentation strings.
1223
1224 \\{checkdoc-minor-keymap}"
1225 (interactive "P")
1226 (setq checkdoc-minor-mode
1227 (not (or (and (null arg) checkdoc-minor-mode)
1228 (<= (prefix-numeric-value arg) 0))))
1229 (checkdoc-mode-line-update))
1230
1231 ;;; Subst utils
1232 ;;
1233 (defsubst checkdoc-run-hooks (hookvar &rest args)
1234 "Run hooks in HOOKVAR with ARGS."
1235 (if (fboundp 'run-hook-with-args-until-success)
1236 (apply 'run-hook-with-args-until-success hookvar args)
1237 ;; This method was similar to above. We ignore the warning
1238 ;; since we will use the above for future Emacs versions
1239 (apply 'run-hook-with-args hookvar args)))
1240
1241 (defsubst checkdoc-create-common-verbs-regexp ()
1242 "Rebuild the contents of `checkdoc-common-verbs-regexp'."
1243 (or checkdoc-common-verbs-regexp
1244 (setq checkdoc-common-verbs-regexp
1245 (concat "\\<\\("
1246 (mapconcat (lambda (e) (concat (car e)))
1247 checkdoc-common-verbs-wrong-voice "\\|")
1248 "\\)\\>"))))
1249
1250 ;; Profiler says this is not yet faster than just calling assoc
1251 ;;(defun checkdoc-word-in-alist-vector (word vector)
1252 ;; "Check to see if WORD is in the car of an element of VECTOR.
1253 ;;VECTOR must be sorted. The CDR should be a replacement. Since the
1254 ;;word list is getting bigger, it is time for a quick bisecting search."
1255 ;; (let ((max (length vector)) (min 0) i
1256 ;; (found nil) (fw nil))
1257 ;; (setq i (/ max 2))
1258 ;; (while (and (not found) (/= min max))
1259 ;; (setq fw (car (aref vector i)))
1260 ;; (cond ((string= word fw) (setq found (cdr (aref vector i))))
1261 ;; ((string< word fw) (setq max i))
1262 ;; (t (setq min i)))
1263 ;; (setq i (/ (+ max min) 2))
1264 ;; )
1265 ;; found))
1266
1267 ;;; Checking engines
1268 ;;
1269 (defun checkdoc-this-string-valid ()
1270 "Return a message string if the current doc string is invalid.
1271 Check for style only, such as the first line always being a complete
1272 sentence, whitespace restrictions, and making sure there are no
1273 hard-coded key-codes such as C-[char] or mouse-[number] in the comment.
1274 See the style guide in the Emacs Lisp manual for more details."
1275
1276 ;; Jump over comments between the last object and the doc string
1277 (while (looking-at "[ \t\n]*;")
1278 (forward-line 1)
1279 (beginning-of-line)
1280 (skip-chars-forward " \n\t"))
1281
1282 (let ((fp (checkdoc-defun-info))
1283 (err nil))
1284 (setq
1285 err
1286 ;; * Every command, function, or variable intended for users to know
1287 ;; about should have a documentation string.
1288 ;;
1289 ;; * An internal variable or subroutine of a Lisp program might as well
1290 ;; have a documentation string. In earlier Emacs versions, you could
1291 ;; save space by using a comment instead of a documentation string,
1292 ;; but that is no longer the case.
1293 (if (and (not (nth 1 fp)) ; not a variable
1294 (or (nth 2 fp) ; is interactive
1295 checkdoc-force-docstrings-flag) ;or we always complain
1296 (not (checkdoc-char= (following-char) ?\"))) ; no doc string
1297 ;; Sometimes old code has comments where the documentation should
1298 ;; be. Let's see if we can find the comment, and offer to turn it
1299 ;; into documentation for them.
1300 (let ((have-comment nil)
1301 (comment-start ";")) ; in case it's not default
1302 (condition-case nil
1303 (progn
1304 (forward-sexp -1)
1305 (forward-sexp 1)
1306 (skip-chars-forward "\n \t")
1307 (setq have-comment (looking-at comment-start)))
1308 (error nil))
1309 (if have-comment
1310 (if (or (eq checkdoc-autofix-flag
1311 'automatic-then-never)
1312 (checkdoc-y-or-n-p
1313 "Convert comment to documentation? "))
1314 (save-excursion
1315 ;; Our point is at the beginning of the comment!
1316 ;; Insert a quote, then remove the comment chars.
1317 (insert "\"")
1318 (let ((docstring-start-point (point)))
1319 (while (looking-at comment-start)
1320 (while (looking-at comment-start)
1321 (delete-char 1))
1322 (if (looking-at "[ \t]+")
1323 (delete-region (match-beginning 0) (match-end 0)))
1324 (forward-line 1)
1325 (beginning-of-line)
1326 (skip-chars-forward " \t")
1327 (if (looking-at comment-start)
1328 (progn
1329 (beginning-of-line)
1330 (zap-to-char 1 ?\;))))
1331 (beginning-of-line)
1332 (forward-char -1)
1333 (insert "\"")
1334 (forward-char -1)
1335 ;; quote any double-quote characters in the comment.
1336 (while (search-backward "\"" docstring-start-point t)
1337 (insert "\\"))
1338 (if (eq checkdoc-autofix-flag 'automatic-then-never)
1339 (setq checkdoc-autofix-flag 'never))))
1340 (checkdoc-create-error
1341 "You should convert this comment to documentation"
1342 (point) (save-excursion (end-of-line) (point))))
1343 (checkdoc-create-error
1344 (if (nth 2 fp)
1345 "All interactive functions should have documentation"
1346 "All variables and subroutines might as well have a \
1347 documentation string")
1348 (point) (+ (point) 1) t)))))
1349 (if (and (not err) (looking-at "\""))
1350 (let ((old-syntax-table (syntax-table)))
1351 (unwind-protect
1352 (progn
1353 (set-syntax-table checkdoc-syntax-table)
1354 (checkdoc-this-string-valid-engine fp))
1355 (set-syntax-table old-syntax-table)))
1356 err)))
1357
1358 (defun checkdoc-this-string-valid-engine (fp)
1359 "Return an error list or string if the current doc string is invalid.
1360 Depends on `checkdoc-this-string-valid' to reset the syntax table so that
1361 regexp short cuts work. FP is the function defun information."
1362 (let ((case-fold-search nil)
1363 ;; Use a marker so if an early check modifies the text,
1364 ;; we won't accidentally loose our place. This could cause
1365 ;; end-of doc string whitespace to also delete the " char.
1366 (s (point))
1367 (e (if (looking-at "\"")
1368 (save-excursion (forward-sexp 1) (point-marker))
1369 (point))))
1370 (or
1371 ;; * *Do not* indent subsequent lines of a documentation string so that
1372 ;; the text is lined up in the source code with the text of the first
1373 ;; line. This looks nice in the source code, but looks bizarre when
1374 ;; users view the documentation. Remember that the indentation
1375 ;; before the starting double-quote is not part of the string!
1376 (save-excursion
1377 (forward-line 1)
1378 (beginning-of-line)
1379 (if (and (< (point) e)
1380 (looking-at "\\([ \t]+\\)[^ \t\n]"))
1381 (if (checkdoc-autofix-ask-replace (match-beginning 1)
1382 (match-end 1)
1383 "Remove this whitespace? "
1384 "")
1385 nil
1386 (checkdoc-create-error
1387 "Second line should not have indentation"
1388 (match-beginning 1)
1389 (match-end 1)))))
1390 ;; * Do not start or end a documentation string with whitespace.
1391 (let (start end)
1392 (if (or (if (looking-at "\"\\([ \t\n]+\\)")
1393 (setq start (match-beginning 1)
1394 end (match-end 1)))
1395 (save-excursion
1396 (forward-sexp 1)
1397 (forward-char -1)
1398 (if (/= (skip-chars-backward " \t\n") 0)
1399 (setq start (point)
1400 end (1- e)))))
1401 (if (checkdoc-autofix-ask-replace
1402 start end "Remove this whitespace? " "")
1403 nil
1404 (checkdoc-create-error
1405 "Documentation strings should not start or end with whitespace"
1406 start end))))
1407 ;; * The first line of the documentation string should consist of one
1408 ;; or two complete sentences that stand on their own as a summary.
1409 ;; `M-x apropos' displays just the first line, and if it doesn't
1410 ;; stand on its own, the result looks bad. In particular, start the
1411 ;; first line with a capital letter and end with a period.
1412 (save-excursion
1413 (end-of-line)
1414 (skip-chars-backward " \t\n")
1415 (if (> (point) e) (goto-char e)) ;of the form (defun n () "doc" nil)
1416 (forward-char -1)
1417 (cond
1418 ((and (checkdoc-char= (following-char) ?\")
1419 ;; A backslashed double quote at the end of a sentence
1420 (not (checkdoc-char= (preceding-char) ?\\)))
1421 ;; We might have to add a period in this case
1422 (forward-char -1)
1423 (if (looking-at "[.!?]")
1424 nil
1425 (forward-char 1)
1426 (if (checkdoc-autofix-ask-replace
1427 (point) (1+ (point)) "Add period to sentence? "
1428 ".\"" t)
1429 nil
1430 (checkdoc-create-error
1431 "First sentence should end with punctuation"
1432 (point) (1+ (point))))))
1433 ((looking-at "[\\!?;:.)]")
1434 ;; These are ok
1435 nil)
1436 ((and checkdoc-permit-comma-termination-flag (looking-at ","))
1437 nil)
1438 (t
1439 ;; If it is not a complete sentence, let's see if we can
1440 ;; predict a clever way to make it one.
1441 (let ((msg "First line is not a complete sentence")
1442 (e (point)))
1443 (beginning-of-line)
1444 (if (re-search-forward "\\. +" e t)
1445 ;; Here we have found a complete sentence, but no break.
1446 (if (checkdoc-autofix-ask-replace
1447 (1+ (match-beginning 0)) (match-end 0)
1448 "First line not a complete sentence. Add RET here? "
1449 "\n" t)
1450 (let (l1 l2)
1451 (forward-line 1)
1452 (end-of-line)
1453 (setq l1 (current-column)
1454 l2 (save-excursion
1455 (forward-line 1)
1456 (end-of-line)
1457 (current-column)))
1458 (if (> (+ l1 l2 1) 80)
1459 (setq msg "Incomplete auto-fix; doc string \
1460 may require more formatting")
1461 ;; We can merge these lines! Replace this CR
1462 ;; with a space.
1463 (delete-char 1) (insert " ")
1464 (setq msg nil))))
1465 ;; Let's see if there is enough room to draw the next
1466 ;; line's sentence up here. I often get hit w/
1467 ;; auto-fill moving my words around.
1468 (let ((numc (progn (end-of-line) (- 80 (current-column))))
1469 (p (point)))
1470 (forward-line 1)
1471 (beginning-of-line)
1472 (if (and (re-search-forward "[.!?:\"]\\([ \t\n]+\\|\"\\)"
1473 (save-excursion
1474 (end-of-line)
1475 (point))
1476 t)
1477 (< (current-column) numc))
1478 (if (checkdoc-autofix-ask-replace
1479 p (1+ p)
1480 "1st line not a complete sentence. Join these lines? "
1481 " " t)
1482 (progn
1483 ;; They said yes. We have more fill work to do...
1484 (goto-char (match-beginning 1))
1485 (delete-region (point) (match-end 1))
1486 (insert "\n")
1487 (setq msg nil))))))
1488 (if msg
1489 (checkdoc-create-error msg s (save-excursion
1490 (goto-char s)
1491 (end-of-line)
1492 (point)))
1493 nil) ))))
1494 ;; Continuation of above. Make sure our sentence is capitalized.
1495 (save-excursion
1496 (skip-chars-forward "\"\\*")
1497 (if (looking-at "[a-z]")
1498 (if (checkdoc-autofix-ask-replace
1499 (match-beginning 0) (match-end 0)
1500 "Capitalize your sentence? " (upcase (match-string 0))
1501 t)
1502 nil
1503 (checkdoc-create-error
1504 "First line should be capitalized"
1505 (match-beginning 0) (match-end 0)))
1506 nil))
1507 ;; * Don't write key sequences directly in documentation strings.
1508 ;; Instead, use the `\\[...]' construct to stand for them.
1509 (save-excursion
1510 (let ((f nil) (m nil) (start (point))
1511 (re "[^`A-Za-z0-9_]\\([CMA]-[a-zA-Z]\\|\\(\\([CMA]-\\)?\
1512 mouse-[0-3]\\)\\)\\>"))
1513 ;; Find the first key sequence not in a sample
1514 (while (and (not f) (setq m (re-search-forward re e t)))
1515 (setq f (not (checkdoc-in-sample-code-p start e))))
1516 (if m
1517 (checkdoc-create-error
1518 (concat
1519 "Keycode " (match-string 1)
1520 " embedded in doc string. Use \\\\<keymap> & \\\\[function] "
1521 "instead")
1522 (match-beginning 1) (match-end 1) t))))
1523 ;; It is not practical to use `\\[...]' very many times, because
1524 ;; display of the documentation string will become slow. So use this
1525 ;; to describe the most important commands in your major mode, and
1526 ;; then use `\\{...}' to display the rest of the mode's keymap.
1527 (save-excursion
1528 (if (re-search-forward "\\\\\\\\\\[\\w+" e t
1529 (1+ checkdoc-max-keyref-before-warn))
1530 (checkdoc-create-error
1531 "Too many occurrences of \\[function]. Use \\{keymap} instead"
1532 s (marker-position e))))
1533 ;; Ambiguous quoted symbol. When a symbol is both bound and fbound,
1534 ;; and is referred to in documentation, it should be prefixed with
1535 ;; something to disambiguate it. This check must be before the
1536 ;; 80 column check because it will probably break that.
1537 (save-excursion
1538 (let ((case-fold-search t)
1539 (ret nil) mb me)
1540 (while (and (re-search-forward "`\\(\\sw\\(\\sw\\|\\s_\\)+\\)'" e t)
1541 (not ret))
1542 (let* ((ms1 (match-string 1))
1543 (sym (intern-soft ms1)))
1544 (setq mb (match-beginning 1)
1545 me (match-end 1))
1546 (if (and sym (boundp sym) (fboundp sym)
1547 (save-excursion
1548 (goto-char mb)
1549 (forward-word -1)
1550 (not (looking-at
1551 "variable\\|option\\|function\\|command\\|symbol"))))
1552 (if (checkdoc-autofix-ask-replace
1553 mb me "Prefix this ambiguous symbol? " ms1 t)
1554 ;; We didn't actually replace anything. Here we find
1555 ;; out what special word form they wish to use as
1556 ;; a prefix.
1557 (let ((disambiguate
1558 (completing-read
1559 "Disambiguating Keyword (default: variable): "
1560 '(("function") ("command") ("variable")
1561 ("option") ("symbol"))
1562 nil t nil nil "variable")))
1563 (goto-char (1- mb))
1564 (insert disambiguate " ")
1565 (forward-word 1))
1566 (setq ret
1567 (format "Disambiguate %s by preceding w/ \
1568 function,command,variable,option or symbol." ms1))))))
1569 (if ret
1570 (checkdoc-create-error ret mb me)
1571 nil)))
1572 ;; * Format the documentation string so that it fits in an
1573 ;; Emacs window on an 80-column screen. It is a good idea
1574 ;; for most lines to be no wider than 60 characters. The
1575 ;; first line can be wider if necessary to fit the
1576 ;; information that ought to be there.
1577 (save-excursion
1578 (let ((start (point))
1579 (eol nil))
1580 (while (and (< (point) e)
1581 (or (progn (end-of-line) (setq eol (point))
1582 (< (current-column) 80))
1583 (progn (beginning-of-line)
1584 (re-search-forward "\\\\\\\\[[<{]"
1585 eol t))
1586 (checkdoc-in-sample-code-p start e)))
1587 (forward-line 1))
1588 (end-of-line)
1589 (if (and (< (point) e) (> (current-column) 80))
1590 (checkdoc-create-error
1591 "Some lines are over 80 columns wide"
1592 s (save-excursion (goto-char s) (end-of-line) (point)) ))))
1593 ;; Here we deviate to tests based on a variable or function.
1594 ;; We must do this before checking for symbols in quotes because there
1595 ;; is a chance that just such a symbol might really be an argument.
1596 (cond ((eq (nth 1 fp) t)
1597 ;; This is if we are in a variable
1598 (or
1599 ;; * The documentation string for a variable that is a
1600 ;; yes-or-no flag should start with words such as Non-nil
1601 ;; means..., to make it clear that all non-`nil' values are
1602 ;; equivalent and indicate explicitly what `nil' and non-`nil'
1603 ;; mean.
1604 ;; * If a user option variable records a true-or-false
1605 ;; condition, give it a name that ends in `-flag'.
1606
1607 ;; If the variable has -flag in the name, make sure
1608 (if (and (string-match "-flag$" (car fp))
1609 (not (looking-at "\"\\*?Non-nil\\s-+means\\s-+")))
1610 (checkdoc-create-error
1611 "Flag variable doc strings should usually start: Non-nil means"
1612 s (marker-position e) t))
1613 ;; If the doc string starts with "Non-nil means"
1614 (if (and (looking-at "\"\\*?Non-nil\\s-+means\\s-+")
1615 (not (string-match "-flag$" (car fp))))
1616 (if (checkdoc-y-or-n-p
1617 (format
1618 "Rename to %s and Query-Replace all occurances? "
1619 (concat (car fp) "-flag")))
1620 (progn
1621 (beginning-of-defun)
1622 (query-replace-regexp
1623 (concat "\\<" (regexp-quote (car fp)) "\\>")
1624 (concat (car fp) "-flag")))
1625 (checkdoc-create-error
1626 "Flag variable names should normally end in `-flag'" s
1627 (marker-position e))))
1628 ;; Done with variables
1629 ))
1630 (t
1631 ;; This if we are in a function definition
1632 (or
1633 ;; * When a function's documentation string mentions the value
1634 ;; of an argument of the function, use the argument name in
1635 ;; capital letters as if it were a name for that value. Thus,
1636 ;; the documentation string of the function `/' refers to its
1637 ;; second argument as `DIVISOR', because the actual argument
1638 ;; name is `divisor'.
1639
1640 ;; Addendum: Make sure they appear in the doc in the same
1641 ;; order that they are found in the arg list.
1642 (let ((args (cdr (cdr (cdr (cdr fp)))))
1643 (last-pos 0)
1644 (found 1)
1645 (order (and (nth 3 fp) (car (nth 3 fp))))
1646 (nocheck (append '("&optional" "&rest") (nth 3 fp)))
1647 (inopts nil))
1648 (while (and args found (> found last-pos))
1649 (if (member (car args) nocheck)
1650 (setq args (cdr args)
1651 inopts t)
1652 (setq last-pos found
1653 found (save-excursion
1654 (re-search-forward
1655 (concat "\\<" (upcase (car args))
1656 ;; Require whitespace OR
1657 ;; ITEMth<space> OR
1658 ;; ITEMs<space>
1659 "\\(\\>\\|th\\>\\|s\\>\\)")
1660 e t)))
1661 (if (not found)
1662 (let ((case-fold-search t))
1663 ;; If the symbol was not found, let's see if we
1664 ;; can find it with a different capitalization
1665 ;; and see if the user wants to capitalize it.
1666 (if (save-excursion
1667 (re-search-forward
1668 (concat "\\<\\(" (car args)
1669 ;; Require whitespace OR
1670 ;; ITEMth<space> OR
1671 ;; ITEMs<space>
1672 "\\)\\(\\>\\|th\\>\\|s\\>\\)")
1673 e t))
1674 (if (checkdoc-autofix-ask-replace
1675 (match-beginning 1) (match-end 1)
1676 (format
1677 "If this is the argument `%s', it should appear as %s. Fix? "
1678 (car args) (upcase (car args)))
1679 (upcase (car args)) t)
1680 (setq found (match-beginning 1))))))
1681 (if found (setq args (cdr args)))))
1682 (if (not found)
1683 ;; It wasn't found at all! Offer to attach this new symbol
1684 ;; to the end of the documentation string.
1685 (if (checkdoc-y-or-n-p
1686 (format
1687 "Add %s documentation to end of doc string? "
1688 (upcase (car args))))
1689 ;; Now do some magic and invent a doc string.
1690 (save-excursion
1691 (goto-char e) (forward-char -1)
1692 (insert "\n"
1693 (if inopts "Optional a" "A")
1694 "rgument " (upcase (car args))
1695 " ")
1696 (insert (read-string "Describe: "))
1697 (if (not (save-excursion (forward-char -1)
1698 (looking-at "[.?!]")))
1699 (insert "."))
1700 nil)
1701 (checkdoc-create-error
1702 (format
1703 "Argument `%s' should appear (as %s) in the doc string"
1704 (car args) (upcase (car args)))
1705 s (marker-position e)))
1706 (if (or (and order (eq order 'yes))
1707 (and (not order) checkdoc-arguments-in-order-flag))
1708 (if (< found last-pos)
1709 (checkdoc-create-error
1710 "Arguments occur in the doc string out of order"
1711 s (marker-position e) t)))))
1712 ;; * For consistency, phrase the verb in the first sentence of a
1713 ;; documentation string for functions as an imperative.
1714 ;; For instance, use `Return the cons of A and
1715 ;; B.' in preference to `Returns the cons of A and B.'
1716 ;; Usually it looks good to do likewise for the rest of the
1717 ;; first paragraph. Subsequent paragraphs usually look better
1718 ;; if they have proper subjects.
1719 ;;
1720 ;; This is the least important of the above tests. Make sure
1721 ;; it occurs last.
1722 (and checkdoc-verb-check-experimental-flag
1723 (save-excursion
1724 ;; Maybe rebuild the monster-regex
1725 (checkdoc-create-common-verbs-regexp)
1726 (let ((lim (save-excursion
1727 (end-of-line)
1728 ;; check string-continuation
1729 (if (checkdoc-char= (preceding-char) ?\\)
1730 (progn (forward-line 1)
1731 (end-of-line)))
1732 (point)))
1733 (rs nil) replace original (case-fold-search t))
1734 (while (and (not rs)
1735 (re-search-forward
1736 checkdoc-common-verbs-regexp
1737 lim t))
1738 (setq original (buffer-substring-no-properties
1739 (match-beginning 1) (match-end 1))
1740 rs (assoc (downcase original)
1741 checkdoc-common-verbs-wrong-voice))
1742 (if (not rs) (error "Verb voice alist corrupted"))
1743 (setq replace (let ((case-fold-search nil))
1744 (save-match-data
1745 (if (string-match "^[A-Z]" original)
1746 (capitalize (cdr rs))
1747 (cdr rs)))))
1748 (if (checkdoc-autofix-ask-replace
1749 (match-beginning 1) (match-end 1)
1750 (format "Use the imperative for \"%s\". \
1751 Replace with \"%s\"? " original replace)
1752 replace t)
1753 (setq rs nil)))
1754 (if rs
1755 ;; there was a match, but no replace
1756 (checkdoc-create-error
1757 (format
1758 "Probably \"%s\" should be imperative \"%s\""
1759 original replace)
1760 (match-beginning 1) (match-end 1))))))
1761 ;; Done with functions
1762 )))
1763 ;;* When a documentation string refers to a Lisp symbol, write it as
1764 ;; it would be printed (which usually means in lower case), with
1765 ;; single-quotes around it. For example: `lambda'. There are two
1766 ;; exceptions: write t and nil without single-quotes. (In this
1767 ;; manual, we normally do use single-quotes for those symbols.)
1768 (save-excursion
1769 (let ((found nil) (start (point)) (msg nil) (ms nil))
1770 (while (and (not msg)
1771 (re-search-forward
1772 "[^([`':a-zA-Z]\\(\\w+[:-]\\(\\w\\|\\s_\\)+\\)[^]']"
1773 e t))
1774 (setq ms (match-string 1))
1775 (save-match-data
1776 ;; A . is a \s_ char, so we must remove periods from
1777 ;; sentences more carefully.
1778 (if (string-match "\\.$" ms)
1779 (setq ms (substring ms 0 (1- (length ms))))))
1780 (if (and (not (checkdoc-in-sample-code-p start e))
1781 (not (checkdoc-in-example-string-p start e))
1782 (not (member ms checkdoc-symbol-words))
1783 (setq found (intern-soft ms))
1784 (or (boundp found) (fboundp found)))
1785 (progn
1786 (setq msg (format "Add quotes around Lisp symbol `%s'? "
1787 ms))
1788 (if (checkdoc-autofix-ask-replace
1789 (match-beginning 1) (+ (match-beginning 1)
1790 (length ms))
1791 msg (concat "`" ms "'") t)
1792 (setq msg nil)
1793 (setq msg
1794 (format "Lisp symbol `%s' should appear in quotes"
1795 ms))))))
1796 (if msg
1797 (checkdoc-create-error msg (match-beginning 1)
1798 (+ (match-beginning 1)
1799 (length ms)))
1800 nil)))
1801 ;; t and nil case
1802 (save-excursion
1803 (if (re-search-forward "\\(`\\(t\\|nil\\)'\\)" e t)
1804 (if (checkdoc-autofix-ask-replace
1805 (match-beginning 1) (match-end 1)
1806 (format "%s should not appear in quotes. Remove? "
1807 (match-string 2))
1808 (match-string 2) t)
1809 nil
1810 (checkdoc-create-error
1811 "Symbols t and nil should not appear in `...' quotes"
1812 (match-beginning 1) (match-end 1)))))
1813 ;; Here is some basic sentence formatting
1814 (checkdoc-sentencespace-region-engine (point) e)
1815 ;; Here are common proper nouns that should always appear capitalized.
1816 (checkdoc-proper-noun-region-engine (point) e)
1817 ;; Make sure the doc string has correctly spelled English words
1818 ;; in it. This function is extracted due to its complexity,
1819 ;; and reliance on the Ispell program.
1820 (checkdoc-ispell-docstring-engine e)
1821 ;; User supplied checks
1822 (save-excursion (checkdoc-run-hooks 'checkdoc-style-hooks fp e))
1823 ;; Done!
1824 )))
1825
1826 (defun checkdoc-defun-info nil
1827 "Return a list of details about the current sexp.
1828 It is a list of the form:
1829 (NAME VARIABLE INTERACTIVE NODOCPARAMS PARAMETERS ...)
1830 where NAME is the name, VARIABLE is t if this is a `defvar',
1831 INTERACTIVE is nil if this is not an interactive function, otherwise
1832 it is the position of the `interactive' call, and PARAMETERS is a
1833 string which is the name of each variable in the function's argument
1834 list. The NODOCPARAMS is a sublist of parameters specified by a checkdoc
1835 comment for a given defun. If the first element is not a string, then
1836 the token checkdoc-order: <TOKEN> exists, and TOKEN is a symbol read
1837 from the comment."
1838 (save-excursion
1839 (beginning-of-defun)
1840 (let ((defun (looking-at "(def\\(un\\|macro\\|subst\\|advice\\)"))
1841 (is-advice (looking-at "(defadvice"))
1842 (lst nil)
1843 (ret nil)
1844 (oo (make-vector 3 0))) ;substitute obarray for `read'
1845 (forward-char 1)
1846 (forward-sexp 1)
1847 (skip-chars-forward " \n\t")
1848 (setq ret
1849 (list (buffer-substring-no-properties
1850 (point) (progn (forward-sexp 1) (point)))))
1851 (if (not defun)
1852 (setq ret (cons t ret))
1853 ;; The variable spot
1854 (setq ret (cons nil ret))
1855 ;; Interactive
1856 (save-excursion
1857 (setq ret (cons
1858 (re-search-forward "(interactive"
1859 (save-excursion (end-of-defun) (point))
1860 t)
1861 ret)))
1862 (skip-chars-forward " \t\n")
1863 (let ((bss (buffer-substring (point) (save-excursion (forward-sexp 1)
1864 (point))))
1865 ;; Overload th main obarray so read doesn't intern the
1866 ;; local symbols of the function we are checking.
1867 ;; Without this we end up cluttering the symbol space w/
1868 ;; useless symbols.
1869 (obarray oo))
1870 ;; Ok, check for checkdoc parameter comment here
1871 (save-excursion
1872 (setq ret
1873 (cons
1874 (let ((sl1 nil))
1875 (if (re-search-forward ";\\s-+checkdoc-order:\\s-+"
1876 (save-excursion (end-of-defun)
1877 (point))
1878 t)
1879 (setq sl1 (list (cond ((looking-at "nil") 'no)
1880 ((looking-at "t") 'yes)))))
1881 (if (re-search-forward ";\\s-+checkdoc-params:\\s-+"
1882 (save-excursion (end-of-defun)
1883 (point))
1884 t)
1885 (let ((sl nil))
1886 (goto-char (match-end 0))
1887 (condition-case nil
1888 (setq lst (read (current-buffer)))
1889 (error (setq lst nil))) ; error in text
1890 (if (not (listp lst)) ; not a list of args
1891 (setq lst (list lst)))
1892 (if (and lst (not (symbolp (car lst)))) ;weird arg
1893 (setq lst nil))
1894 (while lst
1895 (setq sl (cons (symbol-name (car lst)) sl)
1896 lst (cdr lst)))
1897 (setq sl1 (append sl1 sl))))
1898 sl1)
1899 ret)))
1900 ;; Read the list of parameters, but do not put the symbols in
1901 ;; the standard obarray.
1902 (setq lst (read bss)))
1903 ;; This is because read will intern nil if it doesn't into the
1904 ;; new obarray.
1905 (if (not (listp lst)) (setq lst nil))
1906 (if is-advice nil
1907 (while lst
1908 (setq ret (cons (symbol-name (car lst)) ret)
1909 lst (cdr lst)))))
1910 (nreverse ret))))
1911
1912 (defun checkdoc-in-sample-code-p (start limit)
1913 "Return non-nil if the current point is in a code fragment.
1914 A code fragment is identified by an open parenthesis followed by a
1915 symbol which is a valid function or a word in all CAPS, or a parenthesis
1916 that is quoted with the ' character. Only the region from START to LIMIT
1917 is is allowed while searching for the bounding parenthesis."
1918 (save-match-data
1919 (save-restriction
1920 (narrow-to-region start limit)
1921 (save-excursion
1922 (and (condition-case nil (progn (up-list 1) t) (error nil))
1923 (condition-case nil (progn (forward-list -1) t) (error nil))
1924 (or (save-excursion (forward-char -1) (looking-at "'("))
1925 (and (looking-at "(\\(\\(\\w\\|[-:_]\\)+\\)[ \t\n;]")
1926 (let ((ms (buffer-substring-no-properties
1927 (match-beginning 1) (match-end 1))))
1928 ;; if this string is function bound, we are in
1929 ;; sample code. If it has a - or : character in
1930 ;; the name, then it is probably supposed to be bound
1931 ;; but isn't yet.
1932 (or (fboundp (intern-soft ms))
1933 (let ((case-fold-search nil))
1934 (string-match "^[A-Z-]+$" ms))
1935 (string-match "\\w[-:_]+\\w" ms))))))))))
1936
1937 (defun checkdoc-in-example-string-p (start limit)
1938 "Return non-nil if the current point is in an \"example string\".
1939 This string is identified by the characters \\\" surrounding the text.
1940 The text checked is between START and LIMIT."
1941 (save-match-data
1942 (save-excursion
1943 (let ((p (point))
1944 (c 0))
1945 (goto-char start)
1946 (while (and (< (point) p) (re-search-forward "\\\\\"" limit t))
1947 (setq c (1+ c)))
1948 (and (< 0 c) (= (% c 2) 0))))))
1949
1950 (defun checkdoc-proper-noun-region-engine (begin end)
1951 "Check all text between BEGIN and END for lower case proper nouns.
1952 These are Emacs centric proper nouns which should be capitalized for
1953 consistency. Return an error list if any are not fixed, but
1954 internally skip over no answers.
1955 If the offending word is in a piece of quoted text, then it is skipped."
1956 (save-excursion
1957 (let ((case-fold-search nil)
1958 (errtxt nil) bb be
1959 (old-syntax-table (syntax-table)))
1960 (unwind-protect
1961 (progn
1962 (set-syntax-table checkdoc-syntax-table)
1963 (goto-char begin)
1964 (while (re-search-forward checkdoc-proper-noun-regexp end t)
1965 (let ((text (match-string 1))
1966 (b (match-beginning 1))
1967 (e (match-end 1)))
1968 (if (and (not (save-excursion
1969 (goto-char b)
1970 (forward-char -1)
1971 (looking-at "`\\|\"\\|\\.\\|\\\\")))
1972 ;; surrounded by /, as in a URL or filename: /emacs/
1973 (not (and (= ?/ (char-after e))
1974 (= ?/ (char-before b))))
1975 (not (checkdoc-in-example-string-p begin end)))
1976 (if (checkdoc-autofix-ask-replace
1977 b e (format "Text %s should be capitalized. Fix? "
1978 text)
1979 (capitalize text) t)
1980 nil
1981 (if errtxt
1982 ;; If there is already an error, then generate
1983 ;; the warning output if applicable
1984 (if checkdoc-generate-compile-warnings-flag
1985 (checkdoc-create-error
1986 (format
1987 "Name %s should appear capitalized as %s"
1988 text (capitalize text))
1989 b e))
1990 (setq errtxt
1991 (format
1992 "Name %s should appear capitalized as %s"
1993 text (capitalize text))
1994 bb b be e)))))))
1995 (set-syntax-table old-syntax-table))
1996 (if errtxt (checkdoc-create-error errtxt bb be)))))
1997
1998 (defun checkdoc-sentencespace-region-engine (begin end)
1999 "Make sure all sentences have double spaces between BEGIN and END."
2000 (if sentence-end-double-space
2001 (save-excursion
2002 (let ((case-fold-search nil)
2003 (errtxt nil) bb be
2004 (old-syntax-table (syntax-table)))
2005 (unwind-protect
2006 (progn
2007 (set-syntax-table checkdoc-syntax-table)
2008 (goto-char begin)
2009 (while (re-search-forward "[^.0-9]\\(\\. \\)[^ \n]" end t)
2010 (let ((b (match-beginning 1))
2011 (e (match-end 1)))
2012 (if (and (not (checkdoc-in-sample-code-p begin end))
2013 (not (checkdoc-in-example-string-p begin end))
2014 (not (save-excursion
2015 (goto-char (match-beginning 1))
2016 (condition-case nil
2017 (progn
2018 (forward-sexp -1)
2019 ;; piece of an abbreviation
2020 (looking-at
2021 "\\([a-z]\\|[iI]\\.?e\\|[eE]\\.?g\\)\\."))
2022 (error t)))))
2023 (if (checkdoc-autofix-ask-replace
2024 b e
2025 "There should be two spaces after a period. Fix? "
2026 ". ")
2027 nil
2028 (if errtxt
2029 ;; If there is already an error, then generate
2030 ;; the warning output if applicable
2031 (if checkdoc-generate-compile-warnings-flag
2032 (checkdoc-create-error
2033 "There should be two spaces after a period"
2034 b e))
2035 (setq errtxt
2036 "There should be two spaces after a period"
2037 bb b be e)))))))
2038 (set-syntax-table old-syntax-table))
2039 (if errtxt (checkdoc-create-error errtxt bb be))))))
2040
2041 ;;; Ispell engine
2042 ;;
2043 (eval-when-compile (require 'ispell))
2044
2045 (defun checkdoc-ispell-init ()
2046 "Initialize Ispell process (default version) with Lisp words.
2047 The words used are from `checkdoc-ispell-lisp-words'. If `ispell'
2048 cannot be loaded, then set `checkdoc-spellcheck-documentation-flag' to
2049 nil."
2050 (require 'ispell)
2051 (if (not (symbol-value 'ispell-process)) ;Silence byteCompiler
2052 (condition-case nil
2053 (progn
2054 (ispell-buffer-local-words)
2055 ;; This code copied in part from ispell.el Emacs 19.34
2056 (let ((w checkdoc-ispell-lisp-words))
2057 (while w
2058 (process-send-string
2059 ;; Silence byte compiler
2060 (symbol-value 'ispell-process)
2061 (concat "@" (car w) "\n"))
2062 (setq w (cdr w)))))
2063 (error (setq checkdoc-spellcheck-documentation-flag nil)))))
2064
2065 (defun checkdoc-ispell-docstring-engine (end)
2066 "Run the Ispell tools on the doc string between point and END.
2067 Since Ispell isn't Lisp-smart, we must pre-process the doc string
2068 before using the Ispell engine on it."
2069 (if (or (not checkdoc-spellcheck-documentation-flag)
2070 ;; If the user wants no questions or fixing, then we must
2071 ;; disable spell checking as not useful.
2072 (not checkdoc-autofix-flag)
2073 (eq checkdoc-autofix-flag 'never))
2074 nil
2075 (checkdoc-ispell-init)
2076 (save-excursion
2077 (skip-chars-forward "^a-zA-Z")
2078 (let ((word nil) (sym nil) (case-fold-search nil) (err nil))
2079 (while (and (not err) (< (point) end))
2080 (if (save-excursion (forward-char -1) (looking-at "[('`]"))
2081 ;; Skip lists describing meta-syntax, or bound variables
2082 (forward-sexp 1)
2083 (setq word (buffer-substring-no-properties
2084 (point) (progn
2085 (skip-chars-forward "a-zA-Z-")
2086 (point)))
2087 sym (intern-soft word))
2088 (if (and sym (or (boundp sym) (fboundp sym)))
2089 ;; This is probably repetitive in most cases, but not always.
2090 nil
2091 ;; Find out how we spell-check this word.
2092 (if (or
2093 ;; All caps w/ option th, or s tacked on the end
2094 ;; for pluralization or numberthness.
2095 (string-match "^[A-Z][A-Z]+\\(s\\|th\\)?$" word)
2096 (looking-at "}") ; a keymap expression
2097 )
2098 nil
2099 (save-excursion
2100 (if (not (eq checkdoc-autofix-flag 'never))
2101 (let ((lk last-input-event))
2102 (ispell-word nil t)
2103 (if (not (equal last-input-event lk))
2104 (progn
2105 (sit-for 0)
2106 (message "Continuing..."))))
2107 ;; Nothing here.
2108 )))))
2109 (skip-chars-forward "^a-zA-Z"))
2110 err))))
2111
2112 ;;; Rogue space checking engine
2113 ;;
2114 (defun checkdoc-rogue-space-check-engine (&optional start end interact)
2115 "Return a message list if there is a line with white space at the end.
2116 If `checkdoc-autofix-flag' permits, delete that whitespace instead.
2117 If optional arguments START and END are non nil, bound the check to
2118 this region.
2119 Optional argument INTERACT may permit the user to fix problems on the fly."
2120 (let ((p (point))
2121 (msg nil) s e (f nil))
2122 (if (not start) (setq start (point-min)))
2123 ;; If end is nil, it means end of buffer to search anyway
2124 (or
2125 ;; Check for an error if `? ' or `?\ ' is used at the end of a line.
2126 ;; (It's dangerous)
2127 (progn
2128 (goto-char start)
2129 (while (and (not msg) (re-search-forward "\\?\\\\?[ \t][ \t]*$" end t))
2130 (setq msg
2131 "Don't use `? ' at the end of a line. \
2132 News agents may remove it"
2133 s (match-beginning 0) e (match-end 0) f t)
2134 ;; If interactive is passed down, give them a chance to fix things.
2135 (if (and interact (y-or-n-p (concat msg ". Fix? ")))
2136 (progn
2137 (checkdoc-recursive-edit msg)
2138 (setq msg nil)
2139 (goto-char s)
2140 (beginning-of-line)))))
2141 ;; Check for, and potentially remove whitespace appearing at the
2142 ;; end of different lines.
2143 (progn
2144 (goto-char start)
2145 ;; There is no documentation in the Emacs Lisp manual about this check,
2146 ;; it is intended to help clean up messy code and reduce the file size.
2147 (while (and (not msg) (re-search-forward "[^ \t\n;]\\([ \t]+\\)$" end t))
2148 ;; This is not a complex activity
2149 (if (checkdoc-autofix-ask-replace
2150 (match-beginning 1) (match-end 1)
2151 "White space at end of line. Remove? " "")
2152 nil
2153 (setq msg "White space found at end of line"
2154 s (match-beginning 1) e (match-end 1))))))
2155 ;; Return an error and leave the cursor at that spot, or restore
2156 ;; the cursor.
2157 (if msg
2158 (checkdoc-create-error msg s e f)
2159 (goto-char p)
2160 nil)))
2161
2162 ;;; Comment checking engine
2163 ;;
2164 (eval-when-compile
2165 ;; We must load this to:
2166 ;; a) get symbols for compile and
2167 ;; b) determine if we have lm-history symbol which doesn't always exist
2168 (require 'lisp-mnt))
2169
2170 (defun checkdoc-file-comments-engine ()
2171 "Return a message list if this file does not match the Emacs standard.
2172 This checks for style only, such as the first line, Commentary:,
2173 Code:, and others referenced in the style guide."
2174 (if (featurep 'lisp-mnt)
2175 nil
2176 (require 'lisp-mnt)
2177 ;; Old XEmacs don't have `lm-commentary-mark'
2178 (if (and (not (fboundp 'lm-commentary-mark)) (boundp 'lm-commentary))
2179 (defalias 'lm-commentary-mark 'lm-commentary)))
2180 (save-excursion
2181 (let* ((f1 (file-name-nondirectory (buffer-file-name)))
2182 (fn (file-name-sans-extension f1))
2183 (fe (substring f1 (length fn)))
2184 (err nil))
2185 (goto-char (point-min))
2186 ;; This file has been set up where ERR is a variable. Each check is
2187 ;; asked, and the function will make sure that if the user does not
2188 ;; auto-fix some error, that we still move on to the next auto-fix,
2189 ;; AND we remember the past errors.
2190 (setq
2191 err
2192 ;; Lisp Maintenance checks first
2193 ;; Was: (lm-verify) -> not flexible enough for some people
2194 ;; * Summary at the beginning of the file:
2195 (if (not (lm-summary))
2196 ;; This certifies as very complex so always ask unless
2197 ;; it's set to never
2198 (if (checkdoc-y-or-n-p "There is no first line summary! Add one? ")
2199 (progn
2200 (goto-char (point-min))
2201 (insert ";;; " fn fe " --- " (read-string "Summary: ") "\n"))
2202 (checkdoc-create-error
2203 "The first line should be of the form: \";;; package --- Summary\""
2204 (point-min) (save-excursion (goto-char (point-min)) (end-of-line)
2205 (point))))
2206 nil))
2207 (setq
2208 err
2209 (or
2210 ;; * Commentary Section
2211 (if (not (lm-commentary-mark))
2212 (progn
2213 (goto-char (point-min))
2214 (cond
2215 ((re-search-forward
2216 "write\\s-+to\\s-+the\\s-+Free Software Foundation, Inc."
2217 nil t)
2218 (re-search-forward "^;;\\s-*\n\\|^\n" nil t))
2219 ((or (re-search-forward "^;;; History" nil t)
2220 (re-search-forward "^;;; Code" nil t)
2221 (re-search-forward "^(require" nil t)
2222 (re-search-forward "^("))
2223 (beginning-of-line)))
2224 (if (checkdoc-y-or-n-p
2225 "You should have a \";;; Commentary:\", add one? ")
2226 (insert "\n;;; Commentary:\n;; \n\n")
2227 (checkdoc-create-error
2228 "You should have a section marked \";;; Commentary:\""
2229 nil nil t)))
2230 nil)
2231 err))
2232 (setq
2233 err
2234 (or
2235 ;; * History section. Say nothing if there is a file ChangeLog
2236 (if (or (not checkdoc-force-history-flag)
2237 (file-exists-p "ChangeLog")
2238 (file-exists-p "../ChangeLog")
2239 (let ((fn 'lm-history-mark)) ;bestill byte-compiler
2240 (and (fboundp fn) (funcall fn))))
2241 nil
2242 (progn
2243 (goto-char (or (lm-commentary-mark) (point-min)))
2244 (cond
2245 ((re-search-forward
2246 "write\\s-+to\\s-+the\\s-+Free Software Foundation, Inc."
2247 nil t)
2248 (re-search-forward "^;;\\s-*\n\\|^\n" nil t))
2249 ((or (re-search-forward "^;;; Code" nil t)
2250 (re-search-forward "^(require" nil t)
2251 (re-search-forward "^("))
2252 (beginning-of-line)))
2253 (if (checkdoc-y-or-n-p
2254 "You should have a \";;; History:\", add one? ")
2255 (insert "\n;;; History:\n;; \n\n")
2256 (checkdoc-create-error
2257 "You should have a section marked \";;; History:\" or use a ChangeLog"
2258 (point) nil))))
2259 err))
2260 (setq
2261 err
2262 (or
2263 ;; * Code section
2264 (if (not (lm-code-mark))
2265 (let ((cont t))
2266 (goto-char (point-min))
2267 (while (and cont (re-search-forward "^(" nil t))
2268 (setq cont (looking-at "require\\s-+")))
2269 (if (and (not cont)
2270 (checkdoc-y-or-n-p
2271 "There is no ;;; Code: marker. Insert one? "))
2272 (progn (beginning-of-line)
2273 (insert ";;; Code:\n")
2274 nil)
2275 (checkdoc-create-error
2276 "You should have a section marked \";;; Code:\""
2277 (point) nil)))
2278 nil)
2279 err))
2280 (setq
2281 err
2282 (or
2283 ;; * A footer. Not compartmentalized from lm-verify: too bad.
2284 ;; The following is partially clipped from lm-verify
2285 (save-excursion
2286 (goto-char (point-max))
2287 (if (not (re-search-backward
2288 (concat "^;;;[ \t]+" fn "\\(" (regexp-quote fe)
2289 "\\)?[ \t]+ends here[ \t]*$"
2290 "\\|^;;;[ \t]+ End of file[ \t]+"
2291 fn "\\(" (regexp-quote fe) "\\)?")
2292 nil t))
2293 (if (checkdoc-y-or-n-p "No identifiable footer! Add one? ")
2294 (progn
2295 (goto-char (point-max))
2296 (insert "\n(provide '" fn ")\n\n;;; " fn fe " ends here\n"))
2297 (checkdoc-create-error
2298 (format "The footer should be: (provide '%s)\\n;;; %s%s ends here"
2299 fn fn fe)
2300 (1- (point-max)) (point-max)))))
2301 err))
2302 ;; The below checks will not return errors if the user says NO
2303
2304 ;; Let's spellcheck the commentary section. This is the only
2305 ;; section that is easy to pick out, and it is also the most
2306 ;; visible section (with the finder).
2307 (let ((cm (lm-commentary-mark)))
2308 (if cm
2309 (save-excursion
2310 (goto-char (lm-commentary-mark))
2311 ;; Spellcheck between the commentary, and the first
2312 ;; non-comment line. We could use lm-commentary, but that
2313 ;; returns a string, and Ispell wants to talk to a buffer.
2314 ;; Since the comments talk about Lisp, use the specialized
2315 ;; spell-checker we also used for doc strings.
2316 (let ((e (save-excursion (re-search-forward "^[^;]" nil t)
2317 (point))))
2318 (checkdoc-sentencespace-region-engine (point) e)
2319 (checkdoc-proper-noun-region-engine (point) e)
2320 (checkdoc-ispell-docstring-engine e)))))
2321 ;;; test comment out code
2322 ;;; (foo 1 3)
2323 ;;; (bar 5 7)
2324 (setq
2325 err
2326 (or
2327 ;; Generic Full-file checks (should be comment related)
2328 (checkdoc-run-hooks 'checkdoc-comment-style-hooks)
2329 err))
2330 ;; Done with full file comment checks
2331 err)))
2332
2333 (defun checkdoc-outside-major-sexp ()
2334 "Return t if point is outside the bounds of a valid sexp."
2335 (save-match-data
2336 (save-excursion
2337 (let ((p (point)))
2338 (or (progn (beginning-of-defun) (bobp))
2339 (progn (end-of-defun) (< (point) p)))))))
2340
2341 ;;; `error' and `message' text verifier.
2342 ;;
2343 (defun checkdoc-message-text-search (&optional beg end)
2344 "Search between BEG and END for a style error with message text.
2345 Optional arguments BEG and END represent the boundary of the check.
2346 The default boundary is the entire buffer."
2347 (let ((e nil)
2348 (type nil))
2349 (if (not (or beg end)) (setq beg (point-min) end (point-max)))
2350 (goto-char beg)
2351 (while (setq type (checkdoc-message-text-next-string end))
2352 (setq e (checkdoc-message-text-engine type)))
2353 e))
2354
2355 (defun checkdoc-message-text-next-string (end)
2356 "Move cursor to the next checkable message string after point.
2357 Return the message classification.
2358 Argument END is the maximum bounds to search in."
2359 (let ((return nil))
2360 (while (and (not return)
2361 (re-search-forward
2362 "(\\s-*\\(\\(\\w\\|\\s_\\)*error\\|\
2363 \\(\\w\\|\\s_\\)*y-or-n-p\\(-with-timeout\\)?\
2364 \\|checkdoc-autofix-ask-replace\\)[ \t\n]+" end t))
2365 (let* ((fn (match-string 1))
2366 (type (cond ((string-match "error" fn)
2367 'error)
2368 (t 'y-or-n-p))))
2369 (if (string-match "checkdoc-autofix-ask-replace" fn)
2370 (progn (forward-sexp 2)
2371 (skip-chars-forward " \t\n")))
2372 (if (and (eq type 'y-or-n-p)
2373 (looking-at "(format[ \t\n]+"))
2374 (goto-char (match-end 0)))
2375 (skip-chars-forward " \t\n")
2376 (if (not (looking-at "\""))
2377 nil
2378 (setq return type))))
2379 return))
2380
2381 (defun checkdoc-message-text-engine (&optional type)
2382 "Return or fix errors found in strings passed to a message display function.
2383 According to the documentation for the function `error', the error list
2384 should not end with a period, and should start with a capital letter.
2385 The function `y-or-n-p' has similar constraints.
2386 Argument TYPE specifies the type of question, such as `error or `y-or-n-p."
2387 ;; If type is nil, then attempt to derive it.
2388 (if (not type)
2389 (save-excursion
2390 (up-list -1)
2391 (if (looking-at "(format")
2392 (up-list -1))
2393 (setq type
2394 (cond ((looking-at "(error")
2395 'error)
2396 (t 'y-or-n-p)))))
2397 (let ((case-fold-search nil))
2398 (or
2399 ;; From the documentation of the symbol `error':
2400 ;; In Emacs, the convention is that error messages start with a capital
2401 ;; letter but *do not* end with a period. Please follow this convention
2402 ;; for the sake of consistency.
2403 (if (and (save-excursion (forward-char 1)
2404 (looking-at "[a-z]\\w+"))
2405 (not (checkdoc-autofix-ask-replace
2406 (match-beginning 0) (match-end 0)
2407 "Capitalize your message text? "
2408 (capitalize (match-string 0))
2409 t)))
2410 (checkdoc-create-error
2411 "Messages should start with a capital letter"
2412 (match-beginning 0) (match-end 0))
2413 nil)
2414 ;; In general, sentences should have two spaces after the period.
2415 (checkdoc-sentencespace-region-engine (point)
2416 (save-excursion (forward-sexp 1)
2417 (point)))
2418 ;; Look for proper nouns in this region too.
2419 (checkdoc-proper-noun-region-engine (point)
2420 (save-excursion (forward-sexp 1)
2421 (point)))
2422 ;; Here are message type specific questions.
2423 (if (and (eq type 'error)
2424 (save-excursion (forward-sexp 1)
2425 (forward-char -2)
2426 (looking-at "\\."))
2427 (not (checkdoc-autofix-ask-replace (match-beginning 0)
2428 (match-end 0)
2429 "Remove period from error? "
2430 ""
2431 t)))
2432 (checkdoc-create-error
2433 "Error messages should *not* end with a period"
2434 (match-beginning 0) (match-end 0))
2435 nil)
2436 ;; `y-or-n-p' documentation explicitly says:
2437 ;; It should end in a space; `y-or-n-p' adds `(y or n) ' to it.
2438 ;; I added the ? requirement. Without it, it is unclear that we
2439 ;; ask a question and it appears to be an undocumented style.
2440 (if (eq type 'y-or-n-p)
2441 (if (not (save-excursion (forward-sexp 1)
2442 (forward-char -3)
2443 (not (looking-at "\\? "))))
2444 nil
2445 (if (save-excursion (forward-sexp 1)
2446 (forward-char -2)
2447 (looking-at "\\?"))
2448 ;; If we see a ?, then replace with "? ".
2449 (if (checkdoc-autofix-ask-replace
2450 (match-beginning 0) (match-end 0)
2451 "`y-or-n-p' argument should end with \"? \". Fix? "
2452 "? " t)
2453 nil
2454 (checkdoc-create-error
2455 "`y-or-n-p' argument should end with \"? \""
2456 (match-beginning 0) (match-end 0)))
2457 (if (save-excursion (forward-sexp 1)
2458 (forward-char -2)
2459 (looking-at " "))
2460 (if (checkdoc-autofix-ask-replace
2461 (match-beginning 0) (match-end 0)
2462 "`y-or-n-p' argument should end with \"? \". Fix? "
2463 "? " t)
2464 nil
2465 (checkdoc-create-error
2466 "`y-or-n-p' argument should end with \"? \""
2467 (match-beginning 0) (match-end 0)))
2468 (if (and ;; if this isn't true, we have a problem.
2469 (save-excursion (forward-sexp 1)
2470 (forward-char -1)
2471 (looking-at "\""))
2472 (checkdoc-autofix-ask-replace
2473 (match-beginning 0) (match-end 0)
2474 "`y-or-n-p' argument should end with \"? \". Fix? "
2475 "? \"" t))
2476 nil
2477 (checkdoc-create-error
2478 "`y-or-n-p' argument should end with \"? \""
2479 (match-beginning 0) (match-end 0)))))))
2480 ;; Now, let's just run the spell checker on this guy.
2481 (checkdoc-ispell-docstring-engine (save-excursion (forward-sexp 1)
2482 (point)))
2483 )))
2484
2485 ;;; Auto-fix helper functions
2486 ;;
2487 (defun checkdoc-y-or-n-p (question)
2488 "Like `y-or-n-p', but pays attention to `checkdoc-autofix-flag'.
2489 Argument QUESTION is the prompt passed to `y-or-n-p'."
2490 (prog1
2491 (if (or (not checkdoc-autofix-flag)
2492 (eq checkdoc-autofix-flag 'never))
2493 nil
2494 (y-or-n-p question))
2495 (if (eq checkdoc-autofix-flag 'automatic-then-never)
2496 (setq checkdoc-autofix-flag 'never))))
2497
2498 (defun checkdoc-autofix-ask-replace (start end question replacewith
2499 &optional complex)
2500 "Highlight between START and END and queries the user with QUESTION.
2501 If the user says yes, or if `checkdoc-autofix-flag' permits, replace
2502 the region marked by START and END with REPLACEWITH. If optional flag
2503 COMPLEX is non-nil, then we may ask the user a question. See the
2504 documentation for `checkdoc-autofix-flag' for details.
2505
2506 If a section is auto-replaced without asking the user, this function
2507 will pause near the fixed code so the user will briefly see what
2508 happened.
2509
2510 This function returns non-nil if the text was replaced.
2511
2512 This function will not modify `match-data'."
2513 (if (and checkdoc-autofix-flag
2514 (not (eq checkdoc-autofix-flag 'never)))
2515 (let ((o (checkdoc-make-overlay start end))
2516 (ret nil)
2517 (md (match-data)))
2518 (unwind-protect
2519 (progn
2520 (checkdoc-overlay-put o 'face 'highlight)
2521 (if (or (eq checkdoc-autofix-flag 'automatic)
2522 (eq checkdoc-autofix-flag 'automatic-then-never)
2523 (and (eq checkdoc-autofix-flag 'semiautomatic)
2524 (not complex))
2525 (and (or (eq checkdoc-autofix-flag 'query) complex)
2526 (y-or-n-p question)))
2527 (save-excursion
2528 (goto-char start)
2529 ;; On the off chance this is automatic, display
2530 ;; the question anyway so the user knows what's
2531 ;; going on.
2532 (if checkdoc-bouncy-flag (message "%s -> done" question))
2533 (delete-region start end)
2534 (insert replacewith)
2535 (if checkdoc-bouncy-flag (sit-for 0))
2536 (setq ret t)))
2537 (checkdoc-delete-overlay o)
2538 (set-match-data md))
2539 (checkdoc-delete-overlay o)
2540 (set-match-data md))
2541 (if (eq checkdoc-autofix-flag 'automatic-then-never)
2542 (setq checkdoc-autofix-flag 'never))
2543 ret)))
2544
2545 ;;; Warning management
2546 ;;
2547 (defvar checkdoc-output-font-lock-keywords
2548 '(("\\(\\w+\\.el\\): \\(\\w+\\)"
2549 (1 font-lock-function-name-face)
2550 (2 font-lock-comment-face))
2551 ("^\\(\\w+\\.el\\):" 1 font-lock-function-name-face)
2552 (":\\([0-9]+\\):" 1 font-lock-constant-face))
2553 "Keywords used to highlight a checkdoc diagnostic buffer.")
2554
2555 (defvar checkdoc-output-mode-map nil
2556 "Keymap used in `checkdoc-output-mode'.")
2557
2558 (defvar checkdoc-pending-errors nil
2559 "Non-nil when there are errors that have not been displayed yet.")
2560
2561 (if checkdoc-output-mode-map
2562 nil
2563 (setq checkdoc-output-mode-map (make-sparse-keymap))
2564 (if (not (string-match "XEmacs" emacs-version))
2565 (define-key checkdoc-output-mode-map [mouse-2]
2566 'checkdoc-find-error-mouse))
2567 (define-key checkdoc-output-mode-map "\C-c\C-c" 'checkdoc-find-error)
2568 (define-key checkdoc-output-mode-map "\C-m" 'checkdoc-find-error))
2569
2570 (defun checkdoc-output-mode ()
2571 "Create and setup the buffer used to maintain checkdoc warnings.
2572 \\<checkdoc-output-mode-map>\\[checkdoc-find-error] - Go to this error location
2573 \\[checkdoc-find-error-mouse] - Goto the error clicked on."
2574 (if (get-buffer checkdoc-diagnostic-buffer)
2575 (get-buffer checkdoc-diagnostic-buffer)
2576 (save-excursion
2577 (set-buffer (get-buffer-create checkdoc-diagnostic-buffer))
2578 (kill-all-local-variables)
2579 (setq mode-name "Checkdoc"
2580 major-mode 'checkdoc-output-mode)
2581 (set (make-local-variable 'font-lock-defaults)
2582 '((checkdoc-output-font-lock-keywords) t t ((?- . "w") (?_ . "w"))))
2583 (use-local-map checkdoc-output-mode-map)
2584 (run-hooks 'checkdoc-output-mode-hook)
2585 (current-buffer))))
2586
2587 (defun checkdoc-find-error-mouse (e)
2588 ;; checkdoc-params: (e)
2589 "Call `checkdoc-find-error' where the user clicks the mouse."
2590 (interactive "e")
2591 (mouse-set-point e)
2592 (checkdoc-find-error))
2593
2594 (defun checkdoc-find-error ()
2595 "In a checkdoc diagnostic buffer, find the error under point."
2596 (interactive)
2597 (beginning-of-line)
2598 (if (looking-at "\\(\\(\\w+\\|\\s_\\)+\\.el\\):\\([0-9]+\\):")
2599 (let ((l (string-to-int (match-string 3)))
2600 (f (match-string 1)))
2601 (if (not (get-buffer f))
2602 (error "Can't find buffer %s" f))
2603 (switch-to-buffer-other-window (get-buffer f))
2604 (goto-line l))))
2605
2606 (defun checkdoc-buffer-label ()
2607 "The name to use for a checkdoc buffer in the error list."
2608 (if (buffer-file-name)
2609 (file-name-nondirectory (buffer-file-name))
2610 (concat "#<buffer "(buffer-name) ">")))
2611
2612 (defun checkdoc-start-section (check-type)
2613 "Initialize the checkdoc diagnostic buffer for a pass.
2614 Create the header so that the string CHECK-TYPE is displayed as the
2615 function called to create the messages."
2616 (checkdoc-output-to-error-buffer
2617 "\n\n\C-l\n*** "
2618 (checkdoc-buffer-label) ": " check-type " V " checkdoc-version))
2619
2620 (defun checkdoc-error (point msg)
2621 "Store POINT and MSG as errors in the checkdoc diagnostic buffer."
2622 (setq checkdoc-pending-errors t)
2623 (checkdoc-output-to-error-buffer
2624 "\n" (checkdoc-buffer-label) ":"
2625 (int-to-string (count-lines (point-min) (or point 1))) ": "
2626 msg))
2627
2628 (defun checkdoc-output-to-error-buffer (&rest text)
2629 "Place TEXT into the checkdoc diagnostic buffer."
2630 (save-excursion
2631 (set-buffer (checkdoc-output-mode))
2632 (goto-char (point-max))
2633 (apply 'insert text)))
2634
2635 (defun checkdoc-show-diagnostics ()
2636 "Display the checkdoc diagnostic buffer in a temporary window."
2637 (if checkdoc-pending-errors
2638 (let ((b (get-buffer checkdoc-diagnostic-buffer)))
2639 (if b (progn (pop-to-buffer b)
2640 (goto-char (point-max))
2641 (re-search-backward "\C-l" nil t)
2642 (beginning-of-line)
2643 (forward-line 1)
2644 (recenter 0)))
2645 (other-window -1)
2646 (setq checkdoc-pending-errors nil)
2647 nil)))
2648
2649 (defgroup checkdoc nil
2650 "Support for doc string checking in Emacs Lisp."
2651 :prefix "checkdoc"
2652 :group 'lisp
2653 :version "20.3")
2654
2655 (custom-add-option 'emacs-lisp-mode-hook
2656 (lambda () (checkdoc-minor-mode 1)))
2657
2658 (provide 'checkdoc)
2659
2660 ;;; checkdoc.el ends here