Mercurial > emacs
annotate lisp/emacs-lisp/checkdoc.el @ 22605:c3ffffc994d1
(PRINTFINISH): Convert text to unibyte before
inserting in a unibyte buffer.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 24 Jun 1998 18:32:53 +0000 |
parents | d0ad271c7774 |
children | f72e7540940a |
rev | line source |
---|---|
20085 | 1 ;;; checkdoc --- Check documentation strings for style requirements |
2 | |
20603
24dda0afd915
Added some more comments in the commentary.
Eric M. Ludlam <zappo@gnu.org>
parents:
20085
diff
changeset
|
3 ;;; Copyright (C) 1997, 1998 Free Software Foundation |
21181 | 4 |
20603
24dda0afd915
Added some more comments in the commentary.
Eric M. Ludlam <zappo@gnu.org>
parents:
20085
diff
changeset
|
5 ;; Author: Eric M. Ludlam <zappo@gnu.org> |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
6 ;; Version: 0.5.1 |
20085 | 7 ;; Keywords: docs, maint, lisp |
21181 | 8 |
20085 | 9 ;; This file is part of GNU Emacs. |
21181 | 10 |
20085 | 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. | |
21181 | 15 |
20085 | 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. | |
21181 | 20 |
20085 | 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 ;; | |
22195 | 28 ;; The Emacs Lisp manual has a nice chapter on how to write |
20085 | 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'. `checkdoc-current-buffer' and | |
36 ;; `checkdoc-defun' to check your documentation. | |
37 ;; 2) Use `checkdoc-minor-mode' to automatically check your | |
22195 | 38 ;; documentation whenever you evaluate Lisp code with C-M-x |
20085 | 39 ;; or [menu-bar emacs-lisp eval-buffer]. Additional key-bindings |
40 ;; are also provided under C-c ? KEY | |
41 ;; (require 'checkdoc) | |
42 ;; (add-hook 'emacs-lisp-mode-hook | |
43 ;; '(lambda () (checkdoc-minor-mode 1))) | |
44 ;; | |
45 ;; Auto-fixing: | |
46 ;; | |
47 ;; There are four classifications of style errors in terms of how | |
48 ;; easy they are to fix. They are simple, complex, really complex, | |
49 ;; and impossible. (Impossible really means that checkdoc does not | |
50 ;; have a fixing routine yet.) Typically white-space errors are | |
51 ;; classified as simple, and are auto-fixed by default. Typographic | |
52 ;; changes are considered complex, and the user is asked if they want | |
53 ;; the problem fixed before checkdoc makes the change. These changes | |
54 ;; can be done without asking if `checkdoc-autofix-flag' is properly | |
55 ;; set. Potentially redundant changes are considered really complex, | |
56 ;; and the user is always asked before a change is inserted. The | |
57 ;; variable `checkdoc-autofix-flag' controls how these types of errors | |
58 ;; are fixed. | |
59 ;; | |
22195 | 60 ;; Spell checking doc strings: |
20085 | 61 ;; |
62 ;; The variable `checkdoc-spellcheck-documentation-flag' can be set | |
63 ;; to customize how spell checking is to be done. Since spell | |
64 ;; checking can be quite slow, you can optimize how best you want your | |
65 ;; checking done. The default is 'defun, which spell checks each time | |
66 ;; `checkdoc-defun' or `checkdoc-eval-defun' is used. Setting to nil | |
67 ;; prevents spell checking during normal usage. | |
68 ;; Setting this variable to nil does not mean you cannot take | |
69 ;; advantage of the spell checking. You can instead use the | |
70 ;; interactive functions `checkdoc-ispell-*' to check the spelling of | |
71 ;; your documentation. | |
22195 | 72 ;; There is a list of Lisp-specific words which checkdoc will |
73 ;; install into Ispell on the fly, but only if Ispell is not already | |
20085 | 74 ;; running. Use `ispell-kill-ispell' to make checkdoc restart it with |
75 ;; these words enabled. | |
76 ;; | |
20603
24dda0afd915
Added some more comments in the commentary.
Eric M. Ludlam <zappo@gnu.org>
parents:
20085
diff
changeset
|
77 ;; Checking parameters |
24dda0afd915
Added some more comments in the commentary.
Eric M. Ludlam <zappo@gnu.org>
parents:
20085
diff
changeset
|
78 ;; |
22514
dee11277c07d
(checkdoc-eval-defun): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
22195
diff
changeset
|
79 ;; You might not always want a function to have its parameters listed |
20603
24dda0afd915
Added some more comments in the commentary.
Eric M. Ludlam <zappo@gnu.org>
parents:
20085
diff
changeset
|
80 ;; in order. When this is the case, put the following comment just in |
24dda0afd915
Added some more comments in the commentary.
Eric M. Ludlam <zappo@gnu.org>
parents:
20085
diff
changeset
|
81 ;; front of the documentation string: "; checkdoc-order: nil" This |
24dda0afd915
Added some more comments in the commentary.
Eric M. Ludlam <zappo@gnu.org>
parents:
20085
diff
changeset
|
82 ;; overrides the value of `checkdoc-arguments-in-order-flag'. |
24dda0afd915
Added some more comments in the commentary.
Eric M. Ludlam <zappo@gnu.org>
parents:
20085
diff
changeset
|
83 ;; |
24dda0afd915
Added some more comments in the commentary.
Eric M. Ludlam <zappo@gnu.org>
parents:
20085
diff
changeset
|
84 ;; If you specifically wish to avoid mentioning a parameter of a |
24dda0afd915
Added some more comments in the commentary.
Eric M. Ludlam <zappo@gnu.org>
parents:
20085
diff
changeset
|
85 ;; function in the doc string (such as a hidden parameter, or a |
24dda0afd915
Added some more comments in the commentary.
Eric M. Ludlam <zappo@gnu.org>
parents:
20085
diff
changeset
|
86 ;; parameter which is very obvious like events), you can have checkdoc |
24dda0afd915
Added some more comments in the commentary.
Eric M. Ludlam <zappo@gnu.org>
parents:
20085
diff
changeset
|
87 ;; skip looking for it by putting the following comment just in front |
24dda0afd915
Added some more comments in the commentary.
Eric M. Ludlam <zappo@gnu.org>
parents:
20085
diff
changeset
|
88 ;; of the documentation string: "; checkdoc-params: (args go here)" |
24dda0afd915
Added some more comments in the commentary.
Eric M. Ludlam <zappo@gnu.org>
parents:
20085
diff
changeset
|
89 ;; |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
90 ;; Checking message strings |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
91 ;; |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
92 ;; The text that follows the `error', and `y-or-n-p' commands is |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
93 ;; also checked. The documentation for `error' clearly states some |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
94 ;; simple style rules to follow which checkdoc will auto-fix for you. |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
95 ;; `y-or-n-p' also states that it should end in a space. I added that |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
96 ;; it should end in "? " since that is almost always used. |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
97 ;; |
20085 | 98 ;; Adding your own checks: |
99 ;; | |
100 ;; You can experiment with adding your own checks by setting the | |
101 ;; hooks `checkdoc-style-hooks' and `checkdoc-comment-style-hooks'. | |
102 ;; Return a string which is the error you wish to report. The cursor | |
103 ;; position should be preserved. | |
104 ;; | |
22195 | 105 ;; This file requires lisp-mnt (Lisp maintenance routines) for the |
20085 | 106 ;; comment checkers. |
107 | |
108 ;;; TO DO: | |
109 ;; Hook into the byte compiler on a defun/defver level to generate | |
110 ;; warnings in the byte-compiler's warning/error buffer. | |
111 ;; Better ways to override more typical `eval' functions. Advice | |
112 ;; might be good but hard to turn on/off as a minor mode. | |
113 ;; | |
114 ;;; Maybe Do: | |
115 ;; Code sweep checks for "forbidden functions", proper use of hooks, | |
116 ;; proper keybindings, and other items from the manual that are | |
117 ;; not specifically docstring related. Would this even be useful? | |
118 | |
119 ;;; Code: | |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
120 (defvar checkdoc-version "0.5.1" |
20085 | 121 "Release version of checkdoc you are currently running.") |
122 | |
123 ;; From custom web page for compatibility between versions of custom: | |
124 (eval-and-compile | |
125 (condition-case () | |
126 (require 'custom) | |
127 (error nil)) | |
128 (if (and (featurep 'custom) (fboundp 'custom-declare-variable)) | |
129 nil ;; We've got what we needed | |
130 ;; We have the old custom-library, hack around it! | |
131 (defmacro defgroup (&rest args) | |
132 nil) | |
133 (defmacro custom-add-option (&rest args) | |
134 nil) | |
20603
24dda0afd915
Added some more comments in the commentary.
Eric M. Ludlam <zappo@gnu.org>
parents:
20085
diff
changeset
|
135 (defmacro defcustom (var value doc &rest args) |
20085 | 136 (` (defvar (, var) (, value) (, doc)))))) |
137 | |
138 (defcustom checkdoc-autofix-flag 'semiautomatic | |
22195 | 139 "*Non-nil means attempt auto-fixing of doc strings. |
140 If this value is the symbol `query', then the user is queried before | |
141 any change is made. If the value is `automatic', then all changes are | |
20085 | 142 made without asking unless the change is very-complex. If the value |
22195 | 143 is `semiautomatic', or any other value, then simple fixes are made |
20085 | 144 without asking, and complex changes are made by asking the user first. |
22195 | 145 The value `never' is the same as nil, never ask or change anything." |
20085 | 146 :group 'checkdoc |
147 :type '(choice (const automatic) | |
148 (const query) | |
22579
d0ad271c7774
(checkdoc-autofix-flag): Use `other'
Andreas Schwab <schwab@suse.de>
parents:
22514
diff
changeset
|
149 (const never) |
d0ad271c7774
(checkdoc-autofix-flag): Use `other'
Andreas Schwab <schwab@suse.de>
parents:
22514
diff
changeset
|
150 (other :tag "semiautomatic" semiautomatic))) |
20085 | 151 |
152 (defcustom checkdoc-bouncy-flag t | |
22195 | 153 "*Non-nil means to \"bounce\" to auto-fix locations. |
20085 | 154 Setting this to nil will silently make fixes that require no user |
155 interaction. See `checkdoc-autofix-flag' for auto-fixing details." | |
156 :group 'checkdoc | |
157 :type 'boolean) | |
158 | |
159 (defcustom checkdoc-force-docstrings-flag t | |
160 "*Non-nil means that all checkable definitions should have documentation. | |
161 Style guide dictates that interactive functions MUST have documentation, | |
162 and that its good but not required practice to make non user visible items | |
22195 | 163 have doc strings." |
20085 | 164 :group 'checkdoc |
165 :type 'boolean) | |
166 | |
167 (defcustom checkdoc-tripple-semi-comment-check-flag t | |
168 "*Non-nil means to check for multiple adjacent occurrences of ;;; comments. | |
22195 | 169 According to the style of Emacs code in the Lisp libraries, a block |
20085 | 170 comment can look like this: |
171 ;;; Title | |
172 ;; text | |
173 ;; text | |
174 But when inside a function, code can be commented out using the ;;; | |
175 construct for all lines. When this variable is nil, the ;;; construct | |
22514
dee11277c07d
(checkdoc-eval-defun): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
22195
diff
changeset
|
176 is ignored regardless of its location in the code." |
20085 | 177 :group 'checkdoc |
178 :type 'boolean) | |
179 | |
180 (defcustom checkdoc-spellcheck-documentation-flag nil | |
22195 | 181 "*Non-nil means run Ispell on doc strings based on value. |
182 This is automatically set to nil if Ispell does not exist on your | |
20085 | 183 system. Possible values are: |
184 | |
22195 | 185 nil - Don't spell-check during basic style checks. |
186 defun - Spell-check when style checking a single defun | |
187 buffer - Spell-check only when style checking the whole buffer | |
188 interactive - Spell-check only during `checkdoc-interactive' | |
189 t - Always spell-check" | |
20085 | 190 :group 'checkdoc |
191 :type '(choice (const nil) | |
192 (const defun) | |
193 (const buffer) | |
194 (const interactive) | |
195 (const t))) | |
196 | |
197 (defvar checkdoc-ispell-lisp-words | |
22195 | 198 '("alist" "etags" "iff" "keymap" "paren" "regexp" "sexp" "emacs" "xemacs") |
199 "List of words that are correct when spell-checking Lisp documentation.") | |
20085 | 200 |
201 (defcustom checkdoc-max-keyref-before-warn 10 | |
22195 | 202 "*The number of \\ [command-to-keystroke] tokens allowed in a doc string. |
20085 | 203 Any more than this and a warning is generated suggesting that the construct |
204 \\ {keymap} be used instead." | |
205 :group 'checkdoc | |
206 :type 'integer) | |
207 | |
208 (defcustom checkdoc-arguments-in-order-flag t | |
209 "*Non-nil means warn if arguments appear out of order. | |
210 Setting this to nil will mean only checking that all the arguments | |
211 appear in the proper form in the documentation, not that they are in | |
212 the same order as they appear in the argument list. No mention is | |
213 made in the style guide relating to order." | |
214 :group 'checkdoc | |
215 :type 'boolean) | |
216 | |
217 (defvar checkdoc-style-hooks nil | |
218 "Hooks called after the standard style check is completed. | |
219 All hooks must return nil or a string representing the error found. | |
220 Useful for adding new user implemented commands. | |
221 | |
222 Each hook is called with two parameters, (DEFUNINFO ENDPOINT). | |
223 DEFUNINFO is the return value of `checkdoc-defun-info'. ENDPOINT is the | |
224 location of end of the documentation string.") | |
225 | |
226 (defvar checkdoc-comment-style-hooks nil | |
227 "Hooks called after the standard comment style check is completed. | |
228 Must return nil if no errors are found, or a string describing the | |
229 problem discovered. This is useful for adding additional checks.") | |
230 | |
231 (defvar checkdoc-diagnostic-buffer "*Style Warnings*" | |
20603
24dda0afd915
Added some more comments in the commentary.
Eric M. Ludlam <zappo@gnu.org>
parents:
20085
diff
changeset
|
232 "Name of warning message buffer.") |
20085 | 233 |
234 (defvar checkdoc-defun-regexp | |
235 "^(def\\(un\\|var\\|custom\\|macro\\|const\\|subst\\|advice\\)\ | |
236 \\s-+\\(\\(\\sw\\|\\s_\\)+\\)[ \t\n]+" | |
237 "Regular expression used to identify a defun. | |
238 A search leaves the cursor in front of the parameter list.") | |
239 | |
240 (defcustom checkdoc-verb-check-experimental-flag t | |
22195 | 241 "*Non-nil means to attempt to check the voice of the doc string. |
20085 | 242 This check keys off some words which are commonly misused. See the |
22195 | 243 variable `checkdoc-common-verbs-wrong-voice' if you wish to add your own." |
20085 | 244 :group 'checkdoc |
245 :type 'boolean) | |
246 | |
247 (defvar checkdoc-common-verbs-regexp nil | |
248 "Regular expression derived from `checkdoc-common-verbs-regexp'.") | |
249 | |
250 (defvar checkdoc-common-verbs-wrong-voice | |
251 '(("adds" . "add") | |
252 ("allows" . "allow") | |
253 ("appends" . "append") | |
22514
dee11277c07d
(checkdoc-eval-defun): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
22195
diff
changeset
|
254 ("applies" . "apply") |
dee11277c07d
(checkdoc-eval-defun): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
22195
diff
changeset
|
255 ("arranges" . "arrange") |
20085 | 256 ("brings" . "bring") |
257 ("calls" . "call") | |
258 ("catches" . "catch") | |
259 ("changes" . "change") | |
260 ("checks" . "check") | |
261 ("contains" . "contain") | |
262 ("creates" . "create") | |
263 ("destroys" . "destroy") | |
264 ("disables" . "disable") | |
265 ("executes" . "execute") | |
22514
dee11277c07d
(checkdoc-eval-defun): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
22195
diff
changeset
|
266 ("evals" . "evaluate") |
20085 | 267 ("evaluates" . "evaluate") |
268 ("finds" . "find") | |
269 ("forces" . "force") | |
270 ("gathers" . "gather") | |
271 ("generates" . "generate") | |
272 ("goes" . "go") | |
273 ("guesses" . "guess") | |
274 ("highlights" . "highlight") | |
275 ("holds" . "hold") | |
276 ("ignores" . "ignore") | |
277 ("indents" . "indent") | |
278 ("initializes" . "initialize") | |
279 ("inserts" . "insert") | |
280 ("installs" . "install") | |
281 ("investigates" . "investigate") | |
282 ("keeps" . "keep") | |
283 ("kills" . "kill") | |
284 ("leaves" . "leave") | |
285 ("lets" . "let") | |
286 ("loads" . "load") | |
287 ("looks" . "look") | |
288 ("makes" . "make") | |
289 ("marks" . "mark") | |
290 ("matches" . "match") | |
291 ("notifies" . "notify") | |
292 ("offers" . "offer") | |
293 ("parses" . "parse") | |
294 ("performs" . "perform") | |
295 ("prepares" . "prepare") | |
296 ("prepends" . "prepend") | |
297 ("reads" . "read") | |
298 ("raises" . "raise") | |
299 ("removes" . "remove") | |
300 ("replaces" . "replace") | |
301 ("resets" . "reset") | |
302 ("restores" . "restore") | |
303 ("returns" . "return") | |
304 ("runs" . "run") | |
305 ("saves" . "save") | |
306 ("says" . "say") | |
307 ("searches" . "search") | |
308 ("selects" . "select") | |
309 ("sets" . "set") | |
310 ("sex" . "s*x") | |
311 ("shows" . "show") | |
312 ("signifies" . "signify") | |
313 ("sorts" . "sort") | |
314 ("starts" . "start") | |
315 ("stores" . "store") | |
316 ("switches" . "switch") | |
317 ("tells" . "tell") | |
318 ("tests" . "test") | |
319 ("toggles" . "toggle") | |
22514
dee11277c07d
(checkdoc-eval-defun): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
22195
diff
changeset
|
320 ("tries" . "try") |
20085 | 321 ("turns" . "turn") |
322 ("undoes" . "undo") | |
323 ("unloads" . "unload") | |
324 ("unmarks" . "unmark") | |
325 ("updates" . "update") | |
326 ("uses" . "use") | |
327 ("yanks" . "yank") | |
328 ) | |
329 "Alist of common words in the wrong voice and what should be used instead. | |
330 Set `checkdoc-verb-check-experimental-flag' to nil to avoid this costly | |
331 and experimental check. Do not modify this list without setting | |
332 the value of `checkdoc-common-verbs-regexp' to nil which cause it to | |
333 be re-created.") | |
334 | |
335 (defvar checkdoc-syntax-table nil | |
336 "Syntax table used by checkdoc in document strings.") | |
337 | |
338 (if checkdoc-syntax-table | |
339 nil | |
340 (setq checkdoc-syntax-table (copy-syntax-table emacs-lisp-mode-syntax-table)) | |
22195 | 341 ;; When dealing with syntax in doc strings, make sure that - are encompased |
20085 | 342 ;; in words so we can use cheap \\> to get the end of a symbol, not the |
343 ;; end of a word in a conglomerate. | |
344 (modify-syntax-entry ?- "w" checkdoc-syntax-table) | |
345 ) | |
346 | |
347 | |
348 ;;; Compatibility | |
349 ;; | |
350 (if (string-match "X[Ee]macs" emacs-version) | |
351 (progn | |
352 (defalias 'checkdoc-make-overlay 'make-extent) | |
353 (defalias 'checkdoc-overlay-put 'set-extent-property) | |
354 (defalias 'checkdoc-delete-overlay 'delete-extent) | |
355 (defalias 'checkdoc-overlay-start 'extent-start) | |
356 (defalias 'checkdoc-overlay-end 'extent-end) | |
357 (defalias 'checkdoc-mode-line-update 'redraw-modeline) | |
358 (defalias 'checkdoc-call-eval-buffer 'eval-buffer) | |
359 ) | |
360 (defalias 'checkdoc-make-overlay 'make-overlay) | |
361 (defalias 'checkdoc-overlay-put 'overlay-put) | |
362 (defalias 'checkdoc-delete-overlay 'delete-overlay) | |
363 (defalias 'checkdoc-overlay-start 'overlay-start) | |
364 (defalias 'checkdoc-overlay-end 'overlay-end) | |
365 (defalias 'checkdoc-mode-line-update 'force-mode-line-update) | |
366 (defalias 'checkdoc-call-eval-buffer 'eval-current-buffer) | |
367 ) | |
368 | |
369 ;; Emacs 20s have MULE characters which dont equate to numbers. | |
370 (if (fboundp 'char=) | |
371 (defalias 'checkdoc-char= 'char=) | |
372 (defalias 'checkdoc-char= '=)) | |
373 | |
374 ;; Emacs 19.28 and earlier don't have the handy 'add-to-list function | |
375 (if (fboundp 'add-to-list) | |
376 | |
377 (defalias 'checkdoc-add-to-list 'add-to-list) | |
378 | |
379 (defun checkdoc-add-to-list (list-var element) | |
380 "Add to the value of LIST-VAR the element ELEMENT if it isn't there yet." | |
381 (if (not (member element (symbol-value list-var))) | |
382 (set list-var (cons element (symbol-value list-var))))) | |
383 ) | |
384 | |
22195 | 385 ;; To be safe in new Emacsen, we want to read events, not characters |
20085 | 386 (if (fboundp 'read-event) |
387 (defalias 'checkdoc-read-event 'read-event) | |
388 (defalias 'checkdoc-read-event 'read-char)) | |
389 | |
390 ;;; User level commands | |
391 ;; | |
392 ;;;###autoload | |
393 (defun checkdoc-eval-current-buffer () | |
394 "Evaluate and check documentation for the current buffer. | |
395 Evaluation is done first because good documentation for something that | |
22195 | 396 doesn't work is just not useful. Comments, doc strings, and rogue |
20085 | 397 spacing are all verified." |
398 (interactive) | |
399 (checkdoc-call-eval-buffer nil) | |
400 (checkdoc-current-buffer t)) | |
401 | |
402 ;;;###autoload | |
403 (defun checkdoc-current-buffer (&optional take-notes) | |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
404 "Check current buffer for document, comment, error style, and rogue spaces. |
22195 | 405 With a prefix argument (in Lisp, the argument TAKE-NOTES), |
406 store all errors found in a warnings buffer, | |
407 otherwise stop after the first error." | |
20085 | 408 (interactive "P") |
409 (if (interactive-p) (message "Checking buffer for style...")) | |
410 ;; Assign a flag to spellcheck flag | |
411 (let ((checkdoc-spellcheck-documentation-flag | |
412 (memq checkdoc-spellcheck-documentation-flag '(buffer t)))) | |
413 ;; every test is responsible for returning the cursor. | |
414 (or (and buffer-file-name ;; only check comments in a file | |
415 (checkdoc-comments take-notes)) | |
416 (checkdoc take-notes) | |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
417 (checkdoc-message-text take-notes) |
20085 | 418 (checkdoc-rogue-spaces take-notes) |
419 (not (interactive-p)) | |
420 (message "Checking buffer for style...Done.")))) | |
421 | |
422 ;;;###autoload | |
423 (defun checkdoc-interactive (&optional start-here) | |
424 "Interactively check the current buffers for errors. | |
425 Prefix argument START-HERE will start the checking from the current | |
426 point, otherwise the check starts at the beginning of the current | |
427 buffer. Allows navigation forward and backwards through document | |
428 errors. Does not check for comment or space warnings." | |
429 (interactive "P") | |
430 ;; Determine where to start the test | |
431 (let* ((begin (prog1 (point) | |
432 (if (not start-here) (goto-char (point-min))))) | |
433 ;; Assign a flag to spellcheck flag | |
434 (checkdoc-spellcheck-documentation-flag | |
435 (member checkdoc-spellcheck-documentation-flag | |
436 '(buffer interactive t))) | |
437 ;; Fetch the error list | |
438 (err-list (list (checkdoc-next-error)))) | |
439 (if (not (car err-list)) (setq err-list nil)) | |
440 ;; Include whatever function point is in for good measure. | |
441 (beginning-of-defun) | |
442 (while err-list | |
443 (goto-char (cdr (car err-list))) | |
22195 | 444 ;; The cursor should be just in front of the offending doc string |
20085 | 445 (let ((cdo (save-excursion |
446 (checkdoc-make-overlay (point) | |
447 (progn (forward-sexp 1) | |
448 (point))))) | |
449 c) | |
450 (unwind-protect | |
451 (progn | |
452 (checkdoc-overlay-put cdo 'face 'highlight) | |
22195 | 453 ;; Make sure the whole doc string is visible if possible. |
20085 | 454 (sit-for 0) |
455 (if (not (pos-visible-in-window-p | |
456 (save-excursion (forward-sexp 1) (point)) | |
457 (selected-window))) | |
458 (recenter)) | |
459 (message "%s(? e n p q)" (car (car err-list))) | |
460 (setq c (checkdoc-read-event)) | |
461 (if (not (integerp c)) (setq c ??)) | |
462 (cond ((or (checkdoc-char= c ?n) (checkdoc-char= c ?\ )) | |
463 (let ((ne (checkdoc-next-error))) | |
464 (if (not ne) | |
465 (progn | |
466 (message "No More Stylistic Errors.") | |
467 (sit-for 2)) | |
468 (setq err-list (cons ne err-list))))) | |
469 ((or (checkdoc-char= c ?p) (checkdoc-char= c ?\C-?)) | |
470 (if (/= (length err-list) 1) | |
471 (progn | |
472 (setq err-list (cdr err-list)) | |
473 ;; This will just re-ask fixup questions if | |
474 ;; it was skipped the last time. | |
475 (checkdoc-next-error)) | |
476 (message "No Previous Errors.") | |
477 (sit-for 2))) | |
478 ((checkdoc-char= c ?e) | |
479 (message "Edit the docstring, and press C-M-c to exit.") | |
480 (recursive-edit) | |
481 (checkdoc-delete-overlay cdo) | |
482 (setq err-list (cdr err-list)) ;back up the error found. | |
483 (beginning-of-defun) | |
484 (let ((ne (checkdoc-next-error))) | |
485 (if (not ne) | |
486 (progn | |
487 (message "No More Stylistic Errors.") | |
488 (sit-for 2)) | |
489 (setq err-list (cons ne err-list))))) | |
490 ((checkdoc-char= c ?q) | |
491 (setq err-list nil | |
492 begin (point))) | |
493 (t | |
494 (message "[E]dit [SPC|n] next error [DEL|p] prev error\ | |
495 [q]uit [?] help: ") | |
496 (sit-for 5)))) | |
497 (checkdoc-delete-overlay cdo)))) | |
498 (goto-char begin) | |
499 (message "Checkdoc: Done."))) | |
500 | |
501 (defun checkdoc-next-error () | |
502 "Find and return the next checkdoc error list, or nil. | |
503 Add error vector is of the form (WARNING . POSITION) where WARNING | |
504 is the warning text, and POSITION is the point in the buffer where the | |
505 error was found. We can use points and not markers because we promise | |
506 not to edit the buffer before point without re-executing this check." | |
507 (let ((msg nil) (p (point))) | |
508 (condition-case nil | |
509 (while (and (not msg) (checkdoc-next-docstring)) | |
22195 | 510 (message "Searching for doc string error...%d%%" |
20085 | 511 (/ (* 100 (point)) (point-max))) |
512 (if (setq msg (checkdoc-this-string-valid)) | |
513 (setq msg (cons msg (point))))) | |
514 ;; Quit.. restore position, Other errors, leave alone | |
515 (quit (goto-char p))) | |
516 msg)) | |
517 | |
518 ;;;###autoload | |
519 (defun checkdoc (&optional take-notes) | |
520 "Use `checkdoc-continue' starting at the beginning of the current buffer. | |
521 Prefix argument TAKE-NOTES means to collect all the warning messages into | |
522 a separate buffer." | |
523 (interactive "P") | |
524 (let ((p (point))) | |
525 (goto-char (point-min)) | |
526 (checkdoc-continue take-notes) | |
527 ;; Go back since we can't be here without success above. | |
528 (goto-char p) | |
529 nil)) | |
530 | |
531 ;;;###autoload | |
532 (defun checkdoc-continue (&optional take-notes) | |
22195 | 533 "Find the next docstring in the current buffer which is stylisticly poor. |
20085 | 534 Prefix argument TAKE-NOTES means to continue through the whole buffer and |
22514
dee11277c07d
(checkdoc-eval-defun): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
22195
diff
changeset
|
535 save warnings in a separate buffer." |
20085 | 536 (interactive "P") |
537 (let ((wrong nil) (msg nil) (errors nil) | |
538 ;; Assign a flag to spellcheck flag | |
539 (checkdoc-spellcheck-documentation-flag | |
540 (member checkdoc-spellcheck-documentation-flag | |
541 '(buffer t)))) | |
542 (save-excursion | |
543 ;; If we are taking notes, encompass the whole buffer, otherwise | |
544 ;; the user is navigating down through the buffer. | |
545 (if take-notes (checkdoc-start-section "checkdoc")) | |
546 (while (and (not wrong) (checkdoc-next-docstring)) | |
22195 | 547 ;; OK, lets look at the doc string. |
21181 | 548 (setq msg (checkdoc-this-string-valid)) |
549 (if msg | |
550 ;; Oops | |
551 (if take-notes | |
552 (progn | |
553 (checkdoc-error (point) msg) | |
554 (setq errors t)) | |
555 (setq wrong (point)))))) | |
20085 | 556 (if wrong |
557 (progn | |
558 (goto-char wrong) | |
559 (error msg))) | |
560 (if (and take-notes errors) | |
561 (checkdoc-show-diagnostics) | |
562 (if (interactive-p) | |
563 (message "No style warnings."))))) | |
564 | |
565 (defun checkdoc-next-docstring () | |
22195 | 566 "Move to the next doc string after point, and return t. |
567 Return nil if there are no more doc strings." | |
20085 | 568 (if (not (re-search-forward checkdoc-defun-regexp nil t)) |
569 nil | |
570 ;; search drops us after the identifier. The next sexp is either | |
571 ;; the argument list or the value of the variable. skip it. | |
572 (forward-sexp 1) | |
573 (skip-chars-forward " \n\t") | |
574 t)) | |
575 | |
576 ;;; ###autoload | |
577 (defun checkdoc-comments (&optional take-notes) | |
22195 | 578 "Find missing comment sections in the current Emacs Lisp file. |
20085 | 579 Prefix argument TAKE-NOTES non-nil means to save warnings in a |
580 separate buffer. Otherwise print a message. This returns the error | |
581 if there is one." | |
582 (interactive "P") | |
583 (if take-notes (checkdoc-start-section "checkdoc-comments")) | |
584 (if (not buffer-file-name) | |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
585 (error "Can only check comments for a file buffer")) |
20085 | 586 (let* ((checkdoc-spellcheck-documentation-flag |
587 (member checkdoc-spellcheck-documentation-flag | |
588 '(buffer t))) | |
589 (e (checkdoc-file-comments-engine))) | |
590 (if e | |
591 (if take-notes | |
592 (checkdoc-error nil e) | |
593 (error e))) | |
594 (if (and e take-notes) | |
595 (checkdoc-show-diagnostics)) | |
596 e)) | |
597 | |
598 ;;;###autoload | |
599 (defun checkdoc-rogue-spaces (&optional take-notes) | |
600 "Find extra spaces at the end of lines in the current file. | |
601 Prefix argument TAKE-NOTES non-nil means to save warnings in a | |
602 separate buffer. Otherwise print a message. This returns the error | |
603 if there is one." | |
604 (interactive "P") | |
605 (if take-notes (checkdoc-start-section "checkdoc-rogue-spaces")) | |
606 (let ((e (checkdoc-rogue-space-check-engine))) | |
607 (if e | |
608 (if take-notes | |
609 (checkdoc-error nil e) | |
610 (message e))) | |
611 (if (and e take-notes) | |
612 (checkdoc-show-diagnostics)) | |
613 (if (not (interactive-p)) | |
614 e | |
615 (if e (message e) (message "Space Check: done."))))) | |
616 | |
617 | |
618 ;;;###autoload | |
619 (defun checkdoc-eval-defun () | |
22514
dee11277c07d
(checkdoc-eval-defun): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
22195
diff
changeset
|
620 "Evaluate the current form with `eval-defun' and check its documentation. |
20085 | 621 Evaluation is done first so the form will be read before the |
622 documentation is checked. If there is a documentation error, then the display | |
623 of what was evaluated will be overwritten by the diagnostic message." | |
624 (interactive) | |
625 (eval-defun nil) | |
626 (checkdoc-defun)) | |
627 | |
628 ;;;###autoload | |
629 (defun checkdoc-defun (&optional no-error) | |
22195 | 630 "Examine the doc string of the function or variable under point. |
631 Call `error' if the doc string has problems. If NO-ERROR is | |
20085 | 632 non-nil, then do not call error, but call `message' instead. |
22195 | 633 If the doc string passes the test, then check the function for rogue white |
20085 | 634 space at the end of each line." |
635 (interactive) | |
636 (save-excursion | |
637 (beginning-of-defun) | |
638 (if (not (looking-at checkdoc-defun-regexp)) | |
639 ;; I found this more annoying than useful. | |
640 ;;(if (not no-error) | |
22195 | 641 ;; (message "Cannot check this sexp's docstring.")) |
20085 | 642 nil |
643 ;; search drops us after the identifier. The next sexp is either | |
644 ;; the argument list or the value of the variable. skip it. | |
645 (goto-char (match-end 0)) | |
646 (forward-sexp 1) | |
647 (skip-chars-forward " \n\t") | |
648 (let* ((checkdoc-spellcheck-documentation-flag | |
649 (member checkdoc-spellcheck-documentation-flag | |
650 '(defun t))) | |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
651 (beg (save-excursion (beginning-of-defun) (point))) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
652 (end (save-excursion (end-of-defun) (point))) |
20085 | 653 (msg (checkdoc-this-string-valid))) |
654 (if msg (if no-error (message msg) (error msg)) | |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
655 (setq msg (checkdoc-message-text-search beg end)) |
20085 | 656 (if msg (if no-error (message msg) (error msg)) |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
657 (setq msg (checkdoc-rogue-space-check-engine beg end)) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
658 (if msg (if no-error (message msg) (error msg))))) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
659 (if (interactive-p) (message "Checkdoc: done.")))))) |
20085 | 660 |
661 ;;; Ispell interface for forcing a spell check | |
662 ;; | |
663 | |
664 ;;;###autoload | |
665 (defun checkdoc-ispell-current-buffer (&optional take-notes) | |
666 "Check the style and spelling of the current buffer interactively. | |
667 Calls `checkdoc-current-buffer' with spell-checking turned on. | |
668 Prefix argument TAKE-NOTES is the same as for `checkdoc-current-buffer'" | |
669 (interactive) | |
670 (let ((checkdoc-spellcheck-documentation-flag t)) | |
671 (call-interactively 'checkdoc-current-buffer nil current-prefix-arg))) | |
672 | |
673 ;;;###autoload | |
674 (defun checkdoc-ispell-interactive (&optional take-notes) | |
675 "Check the style and spelling of the current buffer interactively. | |
676 Calls `checkdoc-interactive' with spell-checking turned on. | |
677 Prefix argument TAKE-NOTES is the same as for `checkdoc-interacitve'" | |
678 (interactive) | |
679 (let ((checkdoc-spellcheck-documentation-flag t)) | |
680 (call-interactively 'checkdoc-interactive nil current-prefix-arg))) | |
681 | |
682 ;;;###autoload | |
683 (defun checkdoc-ispell (&optional take-notes) | |
684 "Check the style and spelling of the current buffer. | |
685 Calls `checkdoc' with spell-checking turned on. | |
686 Prefix argument TAKE-NOTES is the same as for `checkdoc'" | |
687 (interactive) | |
688 (let ((checkdoc-spellcheck-documentation-flag t)) | |
689 (call-interactively 'checkdoc nil current-prefix-arg))) | |
690 | |
691 ;;;###autoload | |
692 (defun checkdoc-ispell-continue (&optional take-notes) | |
693 "Check the style and spelling of the current buffer after point. | |
694 Calls `checkdoc-continue' with spell-checking turned on. | |
695 Prefix argument TAKE-NOTES is the same as for `checkdoc-continue'" | |
696 (interactive) | |
697 (let ((checkdoc-spellcheck-documentation-flag t)) | |
698 (call-interactively 'checkdoc-continue nil current-prefix-arg))) | |
699 | |
700 ;;;###autoload | |
701 (defun checkdoc-ispell-comments (&optional take-notes) | |
702 "Check the style and spelling of the current buffer's comments. | |
703 Calls `checkdoc-comments' with spell-checking turned on. | |
704 Prefix argument TAKE-NOTES is the same as for `checkdoc-comments'" | |
705 (interactive) | |
706 (let ((checkdoc-spellcheck-documentation-flag t)) | |
707 (call-interactively 'checkdoc-comments nil current-prefix-arg))) | |
708 | |
709 ;;;###autoload | |
710 (defun checkdoc-ispell-defun (&optional take-notes) | |
22195 | 711 "Check the style and spelling of the current defun with Ispell. |
20085 | 712 Calls `checkdoc-defun' with spell-checking turned on. |
713 Prefix argument TAKE-NOTES is the same as for `checkdoc-defun'" | |
714 (interactive) | |
715 (let ((checkdoc-spellcheck-documentation-flag t)) | |
716 (call-interactively 'checkdoc-defun nil current-prefix-arg))) | |
717 | |
718 ;;; Minor Mode specification | |
719 ;; | |
720 (defvar checkdoc-minor-mode nil | |
721 "Non-nil in `emacs-lisp-mode' for automatic documentation checking.") | |
722 (make-variable-buffer-local 'checkdoc-minor-mode) | |
723 | |
724 (checkdoc-add-to-list 'minor-mode-alist '(checkdoc-minor-mode " CDoc")) | |
725 | |
726 (defvar checkdoc-minor-keymap | |
727 (let ((map (make-sparse-keymap)) | |
728 (pmap (make-sparse-keymap))) | |
729 ;; Override some bindings | |
730 (define-key map "\C-\M-x" 'checkdoc-eval-defun) | |
731 (if (not (string-match "XEmacs" emacs-version)) | |
732 (define-key map [menu-bar emacs-lisp eval-buffer] | |
733 'checkdoc-eval-current-buffer)) | |
734 (define-key pmap "x" 'checkdoc-defun) | |
735 (define-key pmap "X" 'checkdoc-ispell-defun) | |
736 (define-key pmap "`" 'checkdoc-continue) | |
737 (define-key pmap "~" 'checkdoc-ispell-continue) | |
738 (define-key pmap "d" 'checkdoc) | |
739 (define-key pmap "D" 'checkdoc-ispell) | |
740 (define-key pmap "i" 'checkdoc-interactive) | |
741 (define-key pmap "I" 'checkdoc-ispell-interactive) | |
742 (define-key pmap "b" 'checkdoc-current-buffer) | |
743 (define-key pmap "B" 'checkdoc-ispell-current-buffer) | |
744 (define-key pmap "e" 'checkdoc-eval-current-buffer) | |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
745 (define-key pmap "m" 'checkdoc-message-text) |
20085 | 746 (define-key pmap "c" 'checkdoc-comments) |
747 (define-key pmap "C" 'checkdoc-ispell-comments) | |
748 (define-key pmap " " 'checkdoc-rogue-spaces) | |
749 | |
750 ;; bind our submap into map | |
751 (define-key map "\C-c?" pmap) | |
752 map) | |
753 "Keymap used to override evaluation key-bindings for documentation checking.") | |
754 | |
755 ;; Add in a menubar with easy-menu | |
756 | |
757 (if checkdoc-minor-keymap | |
758 (easy-menu-define | |
759 checkdoc-minor-menu checkdoc-minor-keymap "Checkdoc Minor Mode Menu" | |
760 '("CheckDoc" | |
761 ["First Style Error" checkdoc t] | |
762 ["First Style or Spelling Error " checkdoc-ispell t] | |
763 ["Next Style Error" checkdoc-continue t] | |
764 ["Next Style or Spelling Error" checkdoc-ispell-continue t] | |
765 ["Interactive Style Check" checkdoc-interactive t] | |
766 ["Interactive Style and Spelling Check" checkdoc-ispell-interactive t] | |
767 ["Check Defun" checkdoc-defun t] | |
768 ["Check and Spell Defun" checkdoc-ispell-defun t] | |
769 ["Check and Evaluate Defun" checkdoc-eval-defun t] | |
770 ["Check Buffer" checkdoc-current-buffer t] | |
771 ["Check and Spell Buffer" checkdoc-ispell-current-buffer t] | |
772 ["Check and Evaluate Buffer" checkdoc-eval-current-buffer t] | |
773 ["Check Comment Style" checkdoc-comments buffer-file-name] | |
774 ["Check Comment Style and Spelling" checkdoc-ispell-comments | |
775 buffer-file-name] | |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
776 ["Check message text" checkdoc-message-text t] |
20085 | 777 ["Check for Rogue Spaces" checkdoc-rogue-spaces t] |
778 ))) | |
779 ;; XEmacs requires some weird stuff to add this menu in a minor mode. | |
780 ;; What is it? | |
781 | |
782 ;; Allow re-insertion of a new keymap | |
783 (let ((a (assoc 'checkdoc-minor-mode minor-mode-map-alist))) | |
784 (if a | |
785 (setcdr a checkdoc-minor-keymap) | |
786 (checkdoc-add-to-list 'minor-mode-map-alist (cons 'checkdoc-minor-mode | |
787 checkdoc-minor-keymap)))) | |
788 | |
789 ;;;###autoload | |
790 (defun checkdoc-minor-mode (&optional arg) | |
22195 | 791 "Toggle Checkdoc minor mode, a mode for checking Lisp doc strings. |
792 With prefix ARG, turn Checkdoc minor mode on iff ARG is positive. | |
20085 | 793 |
22195 | 794 In Checkdoc minor mode, the usual bindings for `eval-defun' which is |
20085 | 795 bound to \\<checkdoc-minor-keymap> \\[checkdoc-eval-defun] and `checkdoc-eval-current-buffer' are overridden to include |
796 checking of documentation strings. | |
797 | |
798 \\{checkdoc-minor-keymap}" | |
799 (interactive "P") | |
800 (setq checkdoc-minor-mode | |
801 (not (or (and (null arg) checkdoc-minor-mode) | |
802 (<= (prefix-numeric-value arg) 0)))) | |
803 (checkdoc-mode-line-update)) | |
804 | |
805 ;;; Subst utils | |
806 ;; | |
807 (defsubst checkdoc-run-hooks (hookvar &rest args) | |
808 "Run hooks in HOOKVAR with ARGS." | |
809 (if (fboundp 'run-hook-with-args-until-success) | |
810 (apply 'run-hook-with-args-until-success hookvar args) | |
811 ;; This method was similar to above. We ignore the warning | |
22195 | 812 ;; since we will use the above for future Emacs versions |
20085 | 813 (apply 'run-hook-with-args hookvar args))) |
814 | |
815 (defsubst checkdoc-create-common-verbs-regexp () | |
816 "Rebuild the contents of `checkdoc-common-verbs-regexp'." | |
817 (or checkdoc-common-verbs-regexp | |
818 (setq checkdoc-common-verbs-regexp | |
819 (concat "\\<\\(" | |
820 (mapconcat (lambda (e) (concat (car e))) | |
821 checkdoc-common-verbs-wrong-voice "\\|") | |
822 "\\)\\>")))) | |
823 | |
824 ;; Profiler says this is not yet faster than just calling assoc | |
825 ;;(defun checkdoc-word-in-alist-vector (word vector) | |
826 ;; "Check to see if WORD is in the car of an element of VECTOR. | |
827 ;;VECTOR must be sorted. The CDR should be a replacement. Since the | |
828 ;;word list is getting bigger, it is time for a quick bisecting search." | |
829 ;; (let ((max (length vector)) (min 0) i | |
830 ;; (found nil) (fw nil)) | |
831 ;; (setq i (/ max 2)) | |
832 ;; (while (and (not found) (/= min max)) | |
833 ;; (setq fw (car (aref vector i))) | |
834 ;; (cond ((string= word fw) (setq found (cdr (aref vector i)))) | |
835 ;; ((string< word fw) (setq max i)) | |
836 ;; (t (setq min i))) | |
837 ;; (setq i (/ (+ max min) 2)) | |
838 ;; ) | |
839 ;; found)) | |
840 | |
841 ;;; Checking engines | |
842 ;; | |
843 (defun checkdoc-this-string-valid () | |
22195 | 844 "Return a message string if the current doc string is invalid. |
20085 | 845 Check for style only, such as the first line always being a complete |
846 sentence, whitespace restrictions, and making sure there are no | |
847 hard-coded key-codes such as C-[char] or mouse-[number] in the comment. | |
848 See the style guide in the Emacs Lisp manual for more details." | |
849 | |
22195 | 850 ;; Jump over comments between the last object and the doc string |
20085 | 851 (while (looking-at "[ \t\n]*;") |
852 (forward-line 1) | |
853 (beginning-of-line) | |
854 (skip-chars-forward " \n\t")) | |
855 | |
856 (if (not (looking-at "[ \t\n]*\"")) | |
857 nil | |
858 (let ((old-syntax-table (syntax-table))) | |
859 (unwind-protect | |
860 (progn | |
861 (set-syntax-table checkdoc-syntax-table) | |
862 (checkdoc-this-string-valid-engine)) | |
863 (set-syntax-table old-syntax-table))))) | |
864 | |
865 (defun checkdoc-this-string-valid-engine () | |
22195 | 866 "Return a message string if the current doc string is invalid. |
20085 | 867 Depends on `checkdoc-this-string-valid' to reset the syntax table so that |
868 regexp short cuts work." | |
869 (let ((case-fold-search nil) | |
870 ;; Use a marker so if an early check modifies the text, | |
871 ;; we won't accidentally loose our place. This could cause | |
22195 | 872 ;; end-of doc string whitespace to also delete the " char. |
20085 | 873 (e (save-excursion (forward-sexp 1) (point-marker))) |
874 (fp (checkdoc-defun-info))) | |
875 (or | |
876 ;; * *Do not* indent subsequent lines of a documentation string so that | |
877 ;; the text is lined up in the source code with the text of the first | |
878 ;; line. This looks nice in the source code, but looks bizarre when | |
879 ;; users view the documentation. Remember that the indentation | |
880 ;; before the starting double-quote is not part of the string! | |
881 (save-excursion | |
882 (forward-line 1) | |
883 (beginning-of-line) | |
884 (if (and (< (point) e) | |
885 (looking-at "\\([ \t]+\\)[^ \t\n]")) | |
886 (if (checkdoc-autofix-ask-replace (match-beginning 1) | |
887 (match-end 1) | |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
888 "Remove this whitespace? " |
20085 | 889 "") |
890 nil | |
891 "Second line should not have indentation"))) | |
892 ;; * Do not start or end a documentation string with whitespace. | |
893 (let (start end) | |
894 (if (or (if (looking-at "\"\\([ \t\n]+\\)") | |
895 (setq start (match-beginning 1) | |
896 end (match-end 1))) | |
897 (save-excursion | |
898 (forward-sexp 1) | |
899 (forward-char -1) | |
900 (if (/= (skip-chars-backward " \t\n") 0) | |
901 (setq start (point) | |
902 end (1- e))))) | |
903 (if (checkdoc-autofix-ask-replace | |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
904 start end "Remove this whitespace? " "") |
20085 | 905 nil |
906 "Documentation strings should not start or end with whitespace"))) | |
907 ;; * Every command, function, or variable intended for users to know | |
908 ;; about should have a documentation string. | |
909 ;; | |
910 ;; * An internal variable or subroutine of a Lisp program might as well | |
911 ;; have a documentation string. In earlier Emacs versions, you could | |
912 ;; save space by using a comment instead of a documentation string, | |
913 ;; but that is no longer the case. | |
914 (if (and (not (nth 1 fp)) ; not a variable | |
915 (or (nth 2 fp) ; is interactive | |
916 checkdoc-force-docstrings-flag) ;or we always complain | |
22195 | 917 (not (checkdoc-char= (following-char) ?\"))) ; no doc string |
20085 | 918 (if (nth 2 fp) |
919 "All interactive functions should have documentation" | |
920 "All variables and subroutines might as well have a \ | |
921 documentation string")) | |
922 ;; * The first line of the documentation string should consist of one | |
923 ;; or two complete sentences that stand on their own as a summary. | |
924 ;; `M-x apropos' displays just the first line, and if it doesn't | |
925 ;; stand on its own, the result looks bad. In particular, start the | |
926 ;; first line with a capital letter and end with a period. | |
927 (save-excursion | |
928 (end-of-line) | |
929 (skip-chars-backward " \t\n") | |
930 (if (> (point) e) (goto-char e)) ;of the form (defun n () "doc" nil) | |
931 (forward-char -1) | |
932 (cond | |
933 ((and (checkdoc-char= (following-char) ?\") | |
934 ;; A backslashed double quote at the end of a sentence | |
935 (not (checkdoc-char= (preceding-char) ?\\))) | |
936 ;; We might have to add a period in this case | |
937 (forward-char -1) | |
938 (if (looking-at "[.!]") | |
939 nil | |
940 (forward-char 1) | |
941 (if (checkdoc-autofix-ask-replace | |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
942 (point) (1+ (point)) "Add period to sentence? " |
20085 | 943 ".\"" t) |
944 nil | |
945 "First sentence should end with punctuation."))) | |
946 ((looking-at "[\\!;:.)]") | |
947 ;; These are ok | |
948 nil) | |
949 (t | |
950 ;; If it is not a complete sentence, lets see if we can | |
951 ;; predict a clever way to make it one. | |
952 (let ((msg "First line is not a complete sentence") | |
953 (e (point))) | |
954 (beginning-of-line) | |
955 (if (re-search-forward "\\. +" e t) | |
956 ;; Here we have found a complete sentence, but no break. | |
957 (if (checkdoc-autofix-ask-replace | |
958 (1+ (match-beginning 0)) (match-end 0) | |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
959 "First line not a complete sentence. Add RET here? " |
20085 | 960 "\n" t) |
961 (let (l1 l2) | |
962 (forward-line 1) | |
963 (end-of-line) | |
964 (setq l1 (current-column) | |
965 l2 (save-excursion | |
966 (forward-line 1) | |
967 (end-of-line) | |
968 (current-column))) | |
969 (if (> (+ l1 l2 1) 80) | |
22195 | 970 (setq msg "Incomplete auto-fix; doc string \ |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
971 may require more formatting") |
20085 | 972 ;; We can merge these lines! Replace this CR |
973 ;; with a space. | |
974 (delete-char 1) (insert " ") | |
975 (setq msg nil)))) | |
976 ;; Lets see if there is enough room to draw the next | |
977 ;; line's sentence up here. I often get hit w/ | |
978 ;; auto-fill moving my words around. | |
979 (let ((numc (progn (end-of-line) (- 80 (current-column)))) | |
980 (p (point))) | |
981 (forward-line 1) | |
982 (beginning-of-line) | |
983 (if (and (re-search-forward "[.!:\"][ \n\"]" (save-excursion | |
984 (end-of-line) | |
985 (point)) | |
986 t) | |
987 (< (current-column) numc)) | |
988 (if (checkdoc-autofix-ask-replace | |
989 p (1+ p) | |
22195 | 990 "1st line not a complete sentence. Join these lines? " |
20085 | 991 " " t) |
992 (progn | |
993 ;; They said yes. We have more fill work to do... | |
994 (delete-char 1) | |
995 (insert "\n") | |
996 (setq msg nil)))))) | |
997 msg)))) | |
998 ;; Continuation of above. Make sure our sentence is capitalized. | |
999 (save-excursion | |
1000 (skip-chars-forward "\"\\*") | |
1001 (if (looking-at "[a-z]") | |
1002 (if (checkdoc-autofix-ask-replace | |
1003 (match-beginning 0) (match-end 0) | |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1004 "Capitalize your sentence? " (upcase (match-string 0)) |
20085 | 1005 t) |
1006 nil | |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1007 "First line should be capitalized") |
20085 | 1008 nil)) |
1009 ;; * For consistency, phrase the verb in the first sentence of a | |
1010 ;; documentation string as an infinitive with "to" omitted. For | |
1011 ;; instance, use "Return the cons of A and B." in preference to | |
1012 ;; "Returns the cons of A and B." Usually it looks good to do | |
1013 ;; likewise for the rest of the first paragraph. Subsequent | |
1014 ;; paragraphs usually look better if they have proper subjects. | |
1015 ;; | |
1016 ;; For our purposes, just check to first sentence. A more robust | |
1017 ;; grammar checker would be preferred for the rest of the | |
1018 ;; documentation string. | |
1019 (and checkdoc-verb-check-experimental-flag | |
1020 (save-excursion | |
1021 ;; Maybe rebuild the monster-regex | |
1022 (checkdoc-create-common-verbs-regexp) | |
1023 (let ((lim (save-excursion | |
1024 (end-of-line) | |
1025 ;; check string-continuation | |
1026 (if (checkdoc-char= (preceding-char) ?\\) | |
1027 (progn (forward-line 1) | |
1028 (end-of-line))) | |
1029 (point))) | |
1030 (rs nil) replace original (case-fold-search t)) | |
1031 (while (and (not rs) | |
1032 (re-search-forward checkdoc-common-verbs-regexp | |
1033 lim t)) | |
1034 (setq original (buffer-substring-no-properties | |
1035 (match-beginning 1) (match-end 1)) | |
1036 rs (assoc (downcase original) | |
1037 checkdoc-common-verbs-wrong-voice)) | |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1038 (if (not rs) (error "Verb voice alist corrupted")) |
20085 | 1039 (setq replace (let ((case-fold-search nil)) |
1040 (save-match-data | |
1041 (if (string-match "^[A-Z]" original) | |
1042 (capitalize (cdr rs)) | |
1043 (cdr rs))))) | |
1044 (if (checkdoc-autofix-ask-replace | |
1045 (match-beginning 1) (match-end 1) | |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1046 (format "Wrong voice for verb `%s'. Replace with `%s'? " |
20085 | 1047 original replace) |
1048 replace t) | |
1049 (setq rs nil))) | |
1050 (if rs | |
1051 ;; there was a match, but no replace | |
1052 (format | |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1053 "Incorrect voice in sentence. Use `%s' instead of `%s'" |
20085 | 1054 replace original))))) |
1055 ;; * Don't write key sequences directly in documentation strings. | |
1056 ;; Instead, use the `\\[...]' construct to stand for them. | |
1057 (save-excursion | |
1058 (let ((f nil) (m nil) (start (point)) | |
21181 | 1059 (re "[^`A-Za-z0-9_]\\([CMA]-[a-zA-Z]\\|\\(\\([CMA]-\\)?\ |
20085 | 1060 mouse-[0-3]\\)\\)\\>")) |
1061 ;; Find the first key sequence not in a sample | |
1062 (while (and (not f) (setq m (re-search-forward re e t))) | |
1063 (setq f (not (checkdoc-in-sample-code-p start e)))) | |
1064 (if m | |
1065 (concat | |
1066 "Keycode " (match-string 1) | |
22195 | 1067 " embedded in doc string. Use \\\\<keymap> & \\\\[function] " |
20085 | 1068 "instead")))) |
1069 ;; It is not practical to use `\\[...]' very many times, because | |
1070 ;; display of the documentation string will become slow. So use this | |
1071 ;; to describe the most important commands in your major mode, and | |
1072 ;; then use `\\{...}' to display the rest of the mode's keymap. | |
1073 (save-excursion | |
1074 (if (re-search-forward "\\\\\\\\\\[\\w+" e t | |
1075 (1+ checkdoc-max-keyref-before-warn)) | |
1076 "Too many occurrences of \\[function]. Use \\{keymap} instead")) | |
22195 | 1077 ;; Ambiguous quoted symbol. When a symbol is both bound and fbound, |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1078 ;; and is referred to in documentation, it should be prefixed with |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1079 ;; something to disambiguate it. This check must be before the |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1080 ;; 80 column check because it will probably break that. |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1081 (save-excursion |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1082 (let ((case-fold-search t) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1083 (ret nil)) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1084 (while (and |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1085 (re-search-forward |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1086 "\\(\\<\\(variable\\|option\\|function\\|command\\|symbol\\)\ |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1087 \\s-+\\)?`\\(\\sw\\(\\sw\\|\\s_\\)+\\)'" e t) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1088 (not ret)) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1089 (let ((sym (intern-soft (match-string 3))) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1090 (mb (match-beginning 3))) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1091 (if (and sym (boundp sym) (fboundp sym) (not (match-string 1))) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1092 (if (checkdoc-autofix-ask-replace |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1093 mb (match-end 3) "Prefix this ambiguous symbol? " |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1094 (match-string 3) t) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1095 ;; We didn't actuall replace anything. Here we find |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1096 ;; out what special word form they wish to use as |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1097 ;; a prefix. |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1098 (let ((disambiguate |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1099 (completing-read |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1100 "Disambiguating Keyword (default: variable): " |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1101 '(("function") ("command") ("variable") |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1102 ("option") ("symbol")) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1103 nil t nil nil "variable"))) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1104 (goto-char (1- mb)) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1105 (insert disambiguate " ") |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1106 (forward-word 1)) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1107 (setq ret |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1108 (format "Disambiguate %s by preceeding w/ \ |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1109 function,command,variable,option or symbol." (match-string 3))))))) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1110 ret)) |
20085 | 1111 ;; * Format the documentation string so that it fits in an |
1112 ;; Emacs window on an 80-column screen. It is a good idea | |
1113 ;; for most lines to be no wider than 60 characters. The | |
1114 ;; first line can be wider if necessary to fit the | |
1115 ;; information that ought to be there. | |
1116 (save-excursion | |
1117 (let ((start (point))) | |
1118 (while (and (< (point) e) | |
1119 (or (progn (end-of-line) (< (current-column) 80)) | |
1120 (progn (beginning-of-line) | |
1121 (re-search-forward "\\\\\\\\[[<{]" | |
1122 (save-excursion | |
1123 (end-of-line) | |
1124 (point)) t)) | |
1125 (checkdoc-in-sample-code-p start e))) | |
1126 (forward-line 1)) | |
1127 (end-of-line) | |
1128 (if (and (< (point) e) (> (current-column) 80)) | |
1129 "Some lines are over 80 columns wide"))) | |
1130 ;;* When a documentation string refers to a Lisp symbol, write it as | |
1131 ;; it would be printed (which usually means in lower case), with | |
1132 ;; single-quotes around it. For example: `lambda'. There are two | |
1133 ;; exceptions: write t and nil without single-quotes. (In this | |
1134 ;; manual, we normally do use single-quotes for those symbols.) | |
1135 (save-excursion | |
1136 (let ((found nil) (start (point)) (msg nil) (ms nil)) | |
1137 (while (and (not msg) | |
1138 (re-search-forward | |
1139 "[^([`':]\\(\\w\+[:-]\\(\\w\\|\\s_\\)+\\)[^]']" | |
1140 e t)) | |
1141 (setq ms (match-string 1)) | |
1142 (save-match-data | |
1143 ;; A . is a \s_ char, so we must remove periods from | |
1144 ;; sentences more carefully. | |
1145 (if (string-match "\\.$" ms) | |
1146 (setq ms (substring ms 0 (1- (length ms)))))) | |
1147 (if (and (not (checkdoc-in-sample-code-p start e)) | |
1148 (setq found (intern-soft ms)) | |
1149 (or (boundp found) (fboundp found))) | |
1150 (progn | |
22195 | 1151 (setq msg (format "Add quotes around Lisp symbol `%s'? " |
20085 | 1152 ms)) |
1153 (if (checkdoc-autofix-ask-replace | |
1154 (match-beginning 1) (+ (match-beginning 1) | |
1155 (length ms)) | |
1156 msg (concat "`" ms "'") t) | |
1157 (setq msg nil))))) | |
1158 msg)) | |
1159 ;; t and nil case | |
1160 (save-excursion | |
1161 (if (re-search-forward "\\(`\\(t\\|nil\\)'\\)" e t) | |
1162 (if (checkdoc-autofix-ask-replace | |
1163 (match-beginning 1) (match-end 1) | |
22195 | 1164 (format "%s should not appear in quotes. Remove? " |
20085 | 1165 (match-string 2)) |
1166 (match-string 2) t) | |
1167 nil | |
1168 "Symbols t and nil should not appear in `quotes'"))) | |
1169 ;; Here we deviate to tests based on a variable or function. | |
1170 (cond ((eq (nth 1 fp) t) | |
1171 ;; This is if we are in a variable | |
1172 (or | |
1173 ;; * The documentation string for a variable that is a | |
1174 ;; yes-or-no flag should start with words such as "Non-nil | |
1175 ;; means...", to make it clear that all non-`nil' values are | |
1176 ;; equivalent and indicate explicitly what `nil' and non-`nil' | |
1177 ;; mean. | |
1178 ;; * If a user option variable records a true-or-false | |
1179 ;; condition, give it a name that ends in `-flag'. | |
1180 | |
1181 ;; If the variable has -flag in the name, make sure | |
1182 (if (and (string-match "-flag$" (car fp)) | |
1183 (not (looking-at "\"\\*?Non-nil\\s-+means\\s-+"))) | |
22195 | 1184 "Flag variable doc strings should start: Non-nil means") |
1185 ;; If the doc string starts with "Non-nil means" | |
20085 | 1186 (if (and (looking-at "\"\\*?Non-nil\\s-+means\\s-+") |
1187 (not (string-match "-flag$" (car fp)))) | |
22195 | 1188 "Flag variables should end in `-flag'") |
20085 | 1189 ;; Done with variables |
1190 )) | |
1191 (t | |
1192 ;; This if we are in a function definition | |
1193 (or | |
1194 ;; * When a function's documentation string mentions the value | |
1195 ;; of an argument of the function, use the argument name in | |
1196 ;; capital letters as if it were a name for that value. Thus, | |
1197 ;; the documentation string of the function `/' refers to its | |
1198 ;; second argument as `DIVISOR', because the actual argument | |
1199 ;; name is `divisor'. | |
1200 | |
1201 ;; Addendum: Make sure they appear in the doc in the same | |
1202 ;; order that they are found in the arg list. | |
1203 (let ((args (cdr (cdr (cdr (cdr fp))))) | |
1204 (last-pos 0) | |
1205 (found 1) | |
1206 (order (and (nth 3 fp) (car (nth 3 fp)))) | |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1207 (nocheck (append '("&optional" "&rest") (nth 3 fp))) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1208 (inopts nil)) |
20085 | 1209 (while (and args found (> found last-pos)) |
1210 (if (member (car args) nocheck) | |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1211 (setq args (cdr args) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1212 inopts t) |
20085 | 1213 (setq last-pos found |
1214 found (save-excursion | |
1215 (re-search-forward | |
1216 (concat "\\<" (upcase (car args)) | |
1217 ;; Require whitespace OR | |
1218 ;; ITEMth<space> OR | |
1219 ;; ITEMs<space> | |
1220 "\\(\\>\\|th\\>\\|s\\>\\)") | |
1221 e t))) | |
1222 (if (not found) | |
1223 (let ((case-fold-search t)) | |
1224 ;; If the symbol was not found, lets see if we | |
1225 ;; can find it with a different capitalization | |
1226 ;; and see if the user wants to capitalize it. | |
1227 (if (save-excursion | |
1228 (re-search-forward | |
1229 (concat "\\<\\(" (car args) | |
1230 ;; Require whitespace OR | |
1231 ;; ITEMth<space> OR | |
1232 ;; ITEMs<space> | |
1233 "\\)\\(\\>\\|th\\>\\|s\\>\\)") | |
1234 e t)) | |
1235 (if (checkdoc-autofix-ask-replace | |
1236 (match-beginning 1) (match-end 1) | |
1237 (format | |
22195 | 1238 "Argument `%s' should appear as `%s'. Fix? " |
20085 | 1239 (car args) (upcase (car args))) |
1240 (upcase (car args)) t) | |
1241 (setq found (match-beginning 1)))))) | |
1242 (if found (setq args (cdr args))))) | |
1243 (if (not found) | |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1244 ;; It wasn't found at all! Offer to attach this new symbol |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1245 ;; to the end of the documentation string. |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1246 (if (y-or-n-p |
22195 | 1247 (format "Add %s documentation to end of doc string?" |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1248 (upcase (car args)))) |
22195 | 1249 ;; Now do some magic and invent a doc string. |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1250 (save-excursion |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1251 (goto-char e) (forward-char -1) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1252 (insert "\n" |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1253 (if inopts "Optional a" "A") |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1254 "rgument " (upcase (car args)) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1255 " ") |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1256 (insert (read-string "Describe: ")) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1257 (if (not (save-excursion (forward-char -1) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1258 (looking-at "[.?!]"))) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1259 (insert ".")) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1260 nil) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1261 (format |
22195 | 1262 "Argument `%s' should appear as `%s' in the doc string" |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1263 (car args) (upcase (car args)))) |
20085 | 1264 (if (or (and order (eq order 'yes)) |
1265 (and (not order) checkdoc-arguments-in-order-flag)) | |
1266 (if (< found last-pos) | |
22195 | 1267 "Arguments occur in the doc string out of order")))) |
20085 | 1268 ;; Done with functions |
1269 ))) | |
22195 | 1270 ;; Make sure the doc string has correctly spelled english words |
1271 ;; in it. This functions is extracted due to its complexity, | |
1272 ;; and reliance on the Ispell program. | |
20085 | 1273 (checkdoc-ispell-docstring-engine e) |
1274 ;; User supplied checks | |
1275 (save-excursion (checkdoc-run-hooks 'checkdoc-style-hooks fp e)) | |
1276 ;; Done! | |
1277 ))) | |
1278 | |
1279 (defun checkdoc-defun-info nil | |
1280 "Return a list of details about the current sexp. | |
1281 It is a list of the form: | |
22195 | 1282 (NAME VARIABLE INTERACTIVE NODOCPARAMS PARAMETERS ...) |
20085 | 1283 where NAME is the name, VARIABLE is t if this is a `defvar', |
1284 INTERACTIVE is nil if this is not an interactive function, otherwise | |
1285 it is the position of the `interactive' call, and PARAMETERS is a | |
1286 string which is the name of each variable in the function's argument | |
1287 list. The NODOCPARAMS is a sublist of parameters specified by a checkdoc | |
1288 comment for a given defun. If the first element is not a string, then | |
1289 the token checkdoc-order: <TOKEN> exists, and TOKEN is a symbol read | |
1290 from the comment." | |
1291 (save-excursion | |
1292 (beginning-of-defun) | |
1293 (let ((defun (looking-at "(def\\(un\\|macro\\|subst\\|advice\\)")) | |
1294 (is-advice (looking-at "(defadvice")) | |
1295 (lst nil) | |
1296 (ret nil) | |
1297 (oo (make-vector 3 0))) ;substitute obarray for `read' | |
1298 (forward-char 1) | |
1299 (forward-sexp 1) | |
1300 (skip-chars-forward " \n\t") | |
1301 (setq ret | |
1302 (list (buffer-substring-no-properties | |
1303 (point) (progn (forward-sexp 1) (point))))) | |
1304 (if (not defun) | |
1305 (setq ret (cons t ret)) | |
1306 ;; The variable spot | |
1307 (setq ret (cons nil ret)) | |
1308 ;; Interactive | |
1309 (save-excursion | |
1310 (setq ret (cons | |
1311 (re-search-forward "(interactive" | |
1312 (save-excursion (end-of-defun) (point)) | |
1313 t) | |
1314 ret))) | |
1315 (skip-chars-forward " \t\n") | |
1316 (let ((bss (buffer-substring (point) (save-excursion (forward-sexp 1) | |
1317 (point)))) | |
1318 ;; Overload th main obarray so read doesn't intern the | |
1319 ;; local symbols of the function we are checking. | |
1320 ;; Without this we end up cluttering the symbol space w/ | |
1321 ;; useless symbols. | |
1322 (obarray oo)) | |
1323 ;; Ok, check for checkdoc parameter comment here | |
1324 (save-excursion | |
1325 (setq ret | |
1326 (cons | |
1327 (let ((sl1 nil)) | |
1328 (if (re-search-forward ";\\s-+checkdoc-order:\\s-+" | |
1329 (save-excursion (end-of-defun) | |
1330 (point)) | |
1331 t) | |
1332 (setq sl1 (list (cond ((looking-at "nil") 'no) | |
1333 ((looking-at "t") 'yes))))) | |
1334 (if (re-search-forward ";\\s-+checkdoc-params:\\s-+" | |
1335 (save-excursion (end-of-defun) | |
1336 (point)) | |
1337 t) | |
1338 (let ((sl nil)) | |
1339 (goto-char (match-end 0)) | |
1340 (setq lst (read (current-buffer))) | |
1341 (while lst | |
1342 (setq sl (cons (symbol-name (car lst)) sl) | |
1343 lst (cdr lst))) | |
1344 (setq sl1 (append sl1 sl)))) | |
1345 sl1) | |
1346 ret))) | |
1347 ;; Read the list of paramters, but do not put the symbols in | |
1348 ;; the standard obarray. | |
1349 (setq lst (read bss))) | |
1350 ;; This is because read will intern nil if it doesn't into the | |
1351 ;; new obarray. | |
1352 (if (not (listp lst)) (setq lst nil)) | |
1353 (if is-advice nil | |
1354 (while lst | |
1355 (setq ret (cons (symbol-name (car lst)) ret) | |
1356 lst (cdr lst))))) | |
1357 (nreverse ret)))) | |
1358 | |
1359 (defun checkdoc-in-sample-code-p (start limit) | |
22195 | 1360 "Return non-nil if the current point is in a code fragment. |
20085 | 1361 A code fragment is identified by an open parenthesis followed by a |
1362 symbol which is a valid function, or a parenthesis that is quoted with the ' | |
1363 character. Only the region from START to LIMIT is is allowed while | |
1364 searching for the bounding parenthesis." | |
1365 (save-match-data | |
1366 (save-restriction | |
1367 (narrow-to-region start limit) | |
1368 (save-excursion | |
1369 (and (condition-case nil (progn (up-list 1) t) (error nil)) | |
1370 (condition-case nil (progn (forward-list -1) t) (error nil)) | |
1371 (or (save-excursion (forward-char -1) (looking-at "'(")) | |
1372 (and (looking-at "(\\(\\(\\w\\|[-:_]\\)+\\)[ \t\n;]") | |
1373 (let ((ms (buffer-substring-no-properties | |
1374 (match-beginning 1) (match-end 1)))) | |
1375 ;; if this string is function bound, we are in | |
1376 ;; sample code. If it has a - or : character in | |
1377 ;; the name, then it is probably supposed to be bound | |
1378 ;; but isn't yet. | |
1379 (or (fboundp (intern-soft ms)) | |
1380 (string-match "\\w[-:_]+\\w" ms)))))))))) | |
1381 | |
1382 ;;; Ispell engine | |
1383 ;; | |
1384 (eval-when-compile (require 'ispell)) | |
1385 | |
1386 (defun checkdoc-ispell-init () | |
22195 | 1387 "Initialize Ispell process (default version) with Lisp words. |
20085 | 1388 The words used are from `checkdoc-ispell-lisp-words'. If `ispell' |
1389 cannot be loaded, then set `checkdoc-spellcheck-documentation-flag' to | |
1390 nil." | |
1391 (require 'ispell) | |
1392 (if (not (symbol-value 'ispell-process)) ;Silence byteCompiler | |
1393 (condition-case nil | |
1394 (progn | |
1395 (ispell-buffer-local-words) | |
22195 | 1396 ;; This code copied in part from ispell.el Emacs 19.34 |
20085 | 1397 (let ((w checkdoc-ispell-lisp-words)) |
1398 (while w | |
1399 (process-send-string | |
1400 ;; Silence byte compiler | |
1401 (symbol-value 'ispell-process) | |
1402 (concat "@" (car w) "\n")) | |
1403 (setq w (cdr w))))) | |
1404 (error (setq checkdoc-spellcheck-documentation-flag nil))))) | |
1405 | |
1406 (defun checkdoc-ispell-docstring-engine (end) | |
22195 | 1407 "Run the Ispell tools on the doc string between point and END. |
1408 Since Ispell isn't Lisp-smart, we must pre-process the doc string | |
1409 before using the Ispell engine on it." | |
20085 | 1410 (if (not checkdoc-spellcheck-documentation-flag) |
1411 nil | |
1412 (checkdoc-ispell-init) | |
1413 (save-excursion | |
1414 (skip-chars-forward "^a-zA-Z") | |
1415 (let ((word nil) (sym nil) (case-fold-search nil) (err nil)) | |
1416 (while (and (not err) (< (point) end)) | |
1417 (if (save-excursion (forward-char -1) (looking-at "[('`]")) | |
1418 ;; Skip lists describing meta-syntax, or bound variables | |
1419 (forward-sexp 1) | |
1420 (setq word (buffer-substring-no-properties | |
1421 (point) (progn | |
1422 (skip-chars-forward "a-zA-Z-") | |
1423 (point))) | |
1424 sym (intern-soft word)) | |
1425 (if (and sym (or (boundp sym) (fboundp sym))) | |
1426 ;; This is probably repetative in most cases, but not always. | |
1427 nil | |
1428 ;; Find out how we spell-check this word. | |
1429 (if (or | |
20603
24dda0afd915
Added some more comments in the commentary.
Eric M. Ludlam <zappo@gnu.org>
parents:
20085
diff
changeset
|
1430 ;; All caps w/ option th, or s tacked on the end |
24dda0afd915
Added some more comments in the commentary.
Eric M. Ludlam <zappo@gnu.org>
parents:
20085
diff
changeset
|
1431 ;; for pluralization or nuberthness. |
24dda0afd915
Added some more comments in the commentary.
Eric M. Ludlam <zappo@gnu.org>
parents:
20085
diff
changeset
|
1432 (string-match "^[A-Z][A-Z]+\\(s\\|th\\)?$" word) |
20085 | 1433 (looking-at "}") ; a keymap expression |
1434 ) | |
1435 nil | |
1436 (save-excursion | |
1437 (if (not (eq checkdoc-autofix-flag 'never)) | |
1438 (let ((lk last-input-event)) | |
1439 (ispell-word nil t) | |
1440 (if (not (equal last-input-event lk)) | |
1441 (progn | |
1442 (sit-for 0) | |
1443 (message "Continuing...")))) | |
1444 ;; Nothing here. | |
1445 ))))) | |
1446 (skip-chars-forward "^a-zA-Z")) | |
1447 err)))) | |
1448 | |
1449 ;;; Rogue space checking engine | |
1450 ;; | |
1451 (defun checkdoc-rogue-space-check-engine (&optional start end) | |
1452 "Return a message string if there is a line with white space at the end. | |
1453 If `checkdoc-autofix-flag' permits, delete that whitespace instead. | |
1454 If optional arguments START and END are non nil, bound the check to | |
1455 this region." | |
1456 (let ((p (point)) | |
1457 (msg nil)) | |
1458 (if (not start) (setq start (point-min))) | |
1459 ;; If end is nil, it means end of buffer to search anyway | |
1460 (or | |
1461 ;; Checkfor and error if `? ' or `?\ ' is used at the end of a line. | |
1462 ;; (It's dangerous) | |
1463 (progn | |
1464 (goto-char start) | |
1465 (if (re-search-forward "\\?\\\\?[ \t][ \t]*$" end t) | |
1466 (setq msg | |
1467 "Don't use `? ' at the end of a line. \ | |
1468 Some editors & news agents may remove it"))) | |
1469 ;; Check for, and pottentially remove whitespace appearing at the | |
1470 ;; end of different lines. | |
1471 (progn | |
1472 (goto-char start) | |
22195 | 1473 ;; There is no documentation in the Emacs Lisp manual about this check, |
20085 | 1474 ;; it is intended to help clean up messy code and reduce the file size. |
1475 (while (and (not msg) (re-search-forward "[^ \t\n]\\([ \t]+\\)$" end t)) | |
1476 ;; This is not a complex activity | |
1477 (if (checkdoc-autofix-ask-replace | |
1478 (match-beginning 1) (match-end 1) | |
22195 | 1479 "White space at end of line. Remove? " "") |
20085 | 1480 nil |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1481 (setq msg "White space found at end of line"))))) |
20085 | 1482 ;; Return an error and leave the cursor at that spot, or restore |
1483 ;; the cursor. | |
1484 (if msg | |
1485 msg | |
1486 (goto-char p) | |
1487 nil))) | |
1488 | |
1489 ;;; Comment checking engine | |
1490 ;; | |
1491 (eval-when-compile | |
1492 ;; We must load this to: | |
1493 ;; a) get symbols for comple and | |
1494 ;; b) determine if we have lm-history symbol which doesn't always exist | |
1495 (require 'lisp-mnt)) | |
1496 | |
1497 (defun checkdoc-file-comments-engine () | |
22195 | 1498 "Return a message string if this file does not match the Emacs standard. |
20085 | 1499 This checks for style only, such as the first line, Commentary:, |
1500 Code:, and others referenced in the style guide." | |
1501 (if (featurep 'lisp-mnt) | |
1502 nil | |
1503 (require 'lisp-mnt) | |
1504 ;; Old Xemacs don't have `lm-commentary-mark' | |
1505 (if (and (not (fboundp 'lm-commentary-mark)) (boundp 'lm-commentary)) | |
1506 (defalias 'lm-commentary-mark 'lm-commentary))) | |
1507 (save-excursion | |
1508 (let* ((f1 (file-name-nondirectory (buffer-file-name))) | |
1509 (fn (file-name-sans-extension f1)) | |
1510 (fe (substring f1 (length fn)))) | |
1511 (goto-char (point-min)) | |
1512 (or | |
1513 ;; Lisp Maintenance checks first | |
1514 ;; Was: (lm-verify) -> not flexible enough for some people | |
1515 ;; * Summary at the beginning of the file: | |
1516 (if (not (lm-summary)) | |
1517 ;; This certifies as very complex so always ask unless | |
1518 ;; it's set to never | |
1519 (if (and checkdoc-autofix-flag | |
1520 (not (eq checkdoc-autofix-flag 'never)) | |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1521 (y-or-n-p "There is no first line summary! Add one? ")) |
20085 | 1522 (progn |
1523 (goto-char (point-min)) | |
1524 (insert ";;; " fn fe " --- " (read-string "Summary: ") "\n")) | |
1525 "The first line should be of the form: \";;; package --- Summary\"") | |
1526 nil) | |
1527 ;; * Commentary Section | |
1528 (if (not (lm-commentary-mark)) | |
1529 "You should have a section marked \";;; Commentary:\"" | |
1530 nil) | |
1531 ;; * History section. Say nothing if there is a file ChangeLog | |
1532 (if (or (file-exists-p "ChangeLog") | |
1533 (let ((fn 'lm-history-mark)) ;bestill byte-compiler | |
1534 (and (fboundp fn) (funcall fn)))) | |
1535 nil | |
1536 "You should have a section marked \";;; History:\" or use a ChangeLog") | |
1537 ;; * Code section | |
1538 (if (not (lm-code-mark)) | |
1539 (let ((cont t)) | |
1540 (goto-char (point-min)) | |
1541 (while (and cont (re-search-forward "^(" nil t)) | |
1542 (setq cont (looking-at "require\\s-+"))) | |
1543 (if (and (not cont) | |
1544 checkdoc-autofix-flag | |
1545 (not (eq checkdoc-autofix-flag 'never)) | |
1546 (y-or-n-p "There is no ;;; Code: marker. Insert one? ")) | |
1547 (progn (beginning-of-line) | |
1548 (insert ";;; Code:\n") | |
1549 nil) | |
1550 "You should have a section marked \";;; Code:\"")) | |
1551 nil) | |
1552 ;; * A footer. Not compartamentalized from lm-verify: too bad. | |
1553 ;; The following is partially clipped from lm-verify | |
1554 (save-excursion | |
1555 (goto-char (point-max)) | |
1556 (if (not (re-search-backward | |
1557 (concat "^;;;[ \t]+" fn "\\(" (regexp-quote fe) | |
1558 "\\)?[ \t]+ends here[ \t]*$" | |
1559 "\\|^;;;[ \t]+ End of file[ \t]+" | |
1560 fn "\\(" (regexp-quote fe) "\\)?") | |
1561 nil t)) | |
1562 (if (and checkdoc-autofix-flag | |
1563 (not (eq checkdoc-autofix-flag 'never)) | |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1564 (y-or-n-p "No identifiable footer! Add one? ")) |
20085 | 1565 (progn |
1566 (goto-char (point-max)) | |
1567 (insert "\n(provide '" fn ")\n;;; " fn fe " ends here\n")) | |
1568 (format "The footer should be (provide '%s)\\n;;; %s%s ends here" | |
1569 fn fn fe)))) | |
1570 ;; Ok, now lets look for multiple occurances of ;;;, and offer | |
1571 ;; to remove the extra ";" if applicable. This pre-supposes | |
1572 ;; that the user has semiautomatic fixing on to be useful. | |
1573 | |
1574 ;; In the info node (elisp)Library Headers a header is three ; | |
1575 ;; (the header) followed by text of only two ; | |
1576 ;; In (elisp)Comment Tips, however it says this: | |
1577 ;; * Another use for triple-semicolon comments is for commenting out | |
1578 ;; lines within a function. We use triple-semicolons for this | |
1579 ;; precisely so that they remain at the left margin. | |
1580 (let ((msg nil)) | |
1581 (goto-char (point-min)) | |
1582 (while (and checkdoc-tripple-semi-comment-check-flag | |
1583 (not msg) (re-search-forward "^;;;[^;]" nil t)) | |
1584 ;; We found a triple, lets check all following lines. | |
1585 (if (not (bolp)) (progn (beginning-of-line) (forward-line 1))) | |
1586 (let ((complex-replace t)) | |
1587 (while (looking-at ";;\\(;\\)[^;]") | |
1588 (if (and (checkdoc-outside-major-sexp) ;in code is ok. | |
1589 (checkdoc-autofix-ask-replace | |
1590 (match-beginning 1) (match-end 1) | |
22195 | 1591 "Multiple occurances of ;;; found. Use ;; instead? " |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1592 "" complex-replace)) |
20085 | 1593 ;; Learn that, yea, the user did want to do this a |
1594 ;; whole bunch of times. | |
1595 (setq complex-replace nil)) | |
1596 (beginning-of-line) | |
1597 (forward-line 1))))) | |
1598 ;; Lets spellcheck the commentary section. This is the only | |
1599 ;; section that is easy to pick out, and it is also the most | |
1600 ;; visible section (with the finder) | |
1601 (save-excursion | |
1602 (goto-char (lm-commentary-mark)) | |
1603 ;; Spellcheck between the commentary, and the first | |
1604 ;; non-comment line. We could use lm-commentary, but that | |
22195 | 1605 ;; returns a string, and Ispell wants to talk to a buffer. |
1606 ;; Since the comments talk about Lisp, use the specialized | |
1607 ;; spell-checker we also used for doc strings. | |
20085 | 1608 (checkdoc-ispell-docstring-engine (save-excursion |
1609 (re-search-forward "^[^;]" nil t) | |
1610 (point)))) | |
1611 ;;; test comment out code | |
1612 ;;; (foo 1 3) | |
1613 ;;; (bar 5 7) | |
1614 ;; Generic Full-file checks (should be comment related) | |
1615 (checkdoc-run-hooks 'checkdoc-comment-style-hooks) | |
1616 ;; Done with full file comment checks | |
1617 )))) | |
1618 | |
1619 (defun checkdoc-outside-major-sexp () | |
1620 "Return t if point is outside the bounds of a valid sexp." | |
1621 (save-match-data | |
1622 (save-excursion | |
1623 (let ((p (point))) | |
1624 (or (progn (beginning-of-defun) (bobp)) | |
1625 (progn (end-of-defun) (< (point) p))))))) | |
1626 | |
22111
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1627 ;;; `error' and `message' text verifier. |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1628 ;; |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1629 (defun checkdoc-message-text (&optional take-notes) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1630 "Scan the buffer for occurrences of the error function, and verify text. |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1631 Optional argument TAKE-NOTES causes all errors to be logged." |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1632 (interactive "P") |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1633 (if take-notes (checkdoc-start-section "checkdoc-message-text")) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1634 (let ((p (point)) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1635 (e (checkdoc-message-text-search))) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1636 (if e (if take-notes (checkdoc-error (point) e) (error e))) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1637 (if (and take-notes e) (checkdoc-show-diagnostics)) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1638 (goto-char p)) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1639 (if (interactive-p) (message "Checking error message text...done."))) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1640 |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1641 (defun checkdoc-message-text-search (&optional beg end) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1642 "Search between BEG and END for an error with `error'. |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1643 Optional arguments BEG and END represent the boundary of the check. |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1644 The default boundary is the entire buffer." |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1645 (let ((e nil)) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1646 (if (not (or beg end)) (setq beg (point-min) end (point-max))) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1647 (goto-char beg) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1648 (while (and (not e) (re-search-forward "(\\s-*error[ \t\n]" end t)) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1649 (if (looking-at "\"") |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1650 (setq e (checkdoc-message-text-engine 'error)))) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1651 (goto-char beg) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1652 (while (and (not e) (re-search-forward |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1653 "\\<y-or-n-p\\(-with-timeout\\)?[ \t\n]" end t)) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1654 ;; Format is common as a first arg.. |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1655 (if (looking-at "(format[ \t\n]") (goto-char (match-end 0))) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1656 (if (looking-at "\"") |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1657 (setq e (checkdoc-message-text-engine 'y-or-n-p)))) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1658 (goto-char beg) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1659 ;; this is cheating for checkdoc only. |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1660 (while (and (not e) (re-search-forward |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1661 "(checkdoc-autofix-ask-replace[ \t\n]" |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1662 end t)) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1663 (forward-sexp 2) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1664 (skip-chars-forward " \t\n") |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1665 (if (looking-at "(format[ \t\n]") (goto-char (match-end 0))) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1666 (if (looking-at "\"") |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1667 (setq e (checkdoc-message-text-engine 'y-or-n-p)))) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1668 ;; Is it worth adding checks for read commands too? That would |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1669 ;; require fixing up `interactive' which could be unpleasant. |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1670 ;; Most people get that right by accident anyway. |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1671 e)) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1672 |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1673 (defun checkdoc-message-text-engine (type) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1674 "Return or fix errors found in strings passed to a message display function. |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1675 According to the documentation for the function `error', the error string |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1676 should not end with a period, and should start with a capitol letter. |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1677 The function `y-or-n-p' has similar constraints. |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1678 Argument TYPE specifies the type of question, such as `error or `y-or-n-p." |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1679 (let ((case-fold-search nil)) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1680 (or |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1681 ;; From the documentation of the symbol `error': |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1682 ;; In Emacs, the convention is that error messages start with a capital |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1683 ;; letter but *do not* end with a period. Please follow this convention |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1684 ;; for the sake of consistency. |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1685 (if (and (save-excursion (forward-char 1) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1686 (looking-at "[a-z]\\w+")) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1687 (not (checkdoc-autofix-ask-replace |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1688 (match-beginning 0) (match-end 0) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1689 "Capitalize your message text? " |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1690 (capitalize (match-string 0)) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1691 t))) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1692 "Messages should start with a capitol letter" |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1693 nil) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1694 (if (and (eq type 'error) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1695 (save-excursion (forward-sexp 1) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1696 (forward-char -2) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1697 (looking-at "\\.")) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1698 (not (checkdoc-autofix-ask-replace (match-beginning 0) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1699 (match-end 0) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1700 "Remove period from error? " |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1701 "" |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1702 t))) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1703 "Error messages should *not* end with a period" |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1704 nil) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1705 ;; `y-or-n-p' documentation explicitly says: |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1706 ;; It should end in a space; `y-or-n-p' adds `(y or n) ' to it. |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1707 ;; I added the ? requirement. Without it, it is unclear that we |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1708 ;; ask a question and it appears to be an undocumented style. |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1709 (if (and (eq type 'y-or-n-p) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1710 (save-excursion (forward-sexp 1) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1711 (forward-char -3) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1712 (not (looking-at "\\? "))) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1713 (if (save-excursion (forward-sexp 1) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1714 (forward-char -2) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1715 (looking-at "\\?")) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1716 ;; If we see a ?, then replace with "? ". |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1717 (if (checkdoc-autofix-ask-replace |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1718 (match-beginning 0) (match-end 0) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1719 "y-or-n-p text should endwith \"? \". Fix? " |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1720 "? " t) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1721 nil |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1722 "y-or-n-p text should endwith \"? \".") |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1723 (if (save-excursion (forward-sexp 1) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1724 (forward-char -2) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1725 (looking-at " ")) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1726 (if (checkdoc-autofix-ask-replace |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1727 (match-beginning 0) (match-end 0) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1728 "y-or-n-p text should endwith \"? \". Fix? " |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1729 "? " t) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1730 nil |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1731 "y-or-n-p text should endwith \"? \".") |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1732 (if (and ;; if this isn't true, we have a problem. |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1733 (save-excursion (forward-sexp 1) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1734 (forward-char -1) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1735 (looking-at "\"")) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1736 (checkdoc-autofix-ask-replace |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1737 (match-beginning 0) (match-end 0) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1738 "y-or-n-p text should endwith \"? \". Fix? " |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1739 "? \"" t)) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1740 nil |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1741 "y-or-n-p text should endwith \"? \".")))) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1742 nil) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1743 ))) |
38f78542051a
Updated with latest version. Changes include:
Eric M. Ludlam <zappo@gnu.org>
parents:
21651
diff
changeset
|
1744 |
20085 | 1745 ;;; Auto-fix helper functions |
1746 ;; | |
1747 (defun checkdoc-autofix-ask-replace (start end question replacewith | |
1748 &optional complex) | |
1749 "Highlight between START and END and queries the user with QUESTION. | |
1750 If the user says yes, or if `checkdoc-autofix-flag' permits, replace | |
1751 the region marked by START and END with REPLACEWITH. If optional flag | |
1752 COMPLEX is non-nil, then we may ask the user a question. See the | |
1753 documentation for `checkdoc-autofix-flag' for details. | |
1754 | |
1755 If a section is auto-replaced without asking the user, this function | |
1756 will pause near the fixed code so the user will briefly see what | |
1757 happened. | |
1758 | |
1759 This function returns non-nil if the text was replaced." | |
1760 (if checkdoc-autofix-flag | |
1761 (let ((o (checkdoc-make-overlay start end)) | |
1762 (ret nil)) | |
1763 (unwind-protect | |
1764 (progn | |
1765 (checkdoc-overlay-put o 'face 'highlight) | |
1766 (if (or (eq checkdoc-autofix-flag 'automatic) | |
1767 (and (eq checkdoc-autofix-flag 'semiautomatic) | |
1768 (not complex)) | |
1769 (and (or (eq checkdoc-autofix-flag 'query) complex) | |
1770 (y-or-n-p question))) | |
1771 (save-excursion | |
1772 (goto-char start) | |
1773 ;; On the off chance this is automatic, display | |
1774 ;; the question anyway so the user knows whats | |
1775 ;; going on. | |
1776 (if checkdoc-bouncy-flag (message "%s -> done" question)) | |
1777 (delete-region start end) | |
1778 (insert replacewith) | |
1779 (if checkdoc-bouncy-flag (sit-for 0)) | |
1780 (setq ret t))) | |
1781 (checkdoc-delete-overlay o)) | |
1782 (checkdoc-delete-overlay o)) | |
1783 ret))) | |
1784 | |
1785 ;;; Warning management | |
1786 ;; | |
1787 (defvar checkdoc-output-font-lock-keywords | |
1788 '(("\\(\\w+\\.el\\):" 1 font-lock-function-name-face) | |
1789 ("style check: \\(\\w+\\)" 1 font-lock-comment-face) | |
20953
f3f9df46d008
Changed font-lock-reference-face to font-lock-constant-face.
Simon Marshall <simon@gnu.org>
parents:
20603
diff
changeset
|
1790 ("^\\([0-9]+\\):" 1 font-lock-constant-face)) |
20085 | 1791 "Keywords used to highlight a checkdoc diagnostic buffer.") |
1792 | |
1793 (defvar checkdoc-output-mode-map nil | |
1794 "Keymap used in `checkdoc-output-mode'.") | |
1795 | |
1796 (if checkdoc-output-mode-map | |
1797 nil | |
1798 (setq checkdoc-output-mode-map (make-sparse-keymap)) | |
1799 (if (not (string-match "XEmacs" emacs-version)) | |
1800 (define-key checkdoc-output-mode-map [mouse-2] | |
1801 'checkdoc-find-error-mouse)) | |
1802 (define-key checkdoc-output-mode-map "\C-c\C-c" 'checkdoc-find-error) | |
1803 (define-key checkdoc-output-mode-map "\C-m" 'checkdoc-find-error)) | |
1804 | |
1805 (defun checkdoc-output-mode () | |
1806 "Create and setup the buffer used to maintain checkdoc warnings. | |
1807 \\<checkdoc-output-mode-map>\\[checkdoc-find-error] - Go to this error location | |
1808 \\[checkdoc-find-error-mouse] - Goto the error clicked on." | |
1809 (if (get-buffer checkdoc-diagnostic-buffer) | |
1810 (get-buffer checkdoc-diagnostic-buffer) | |
1811 (save-excursion | |
1812 (set-buffer (get-buffer-create checkdoc-diagnostic-buffer)) | |
1813 (kill-all-local-variables) | |
1814 (setq mode-name "Checkdoc" | |
1815 major-mode 'checkdoc-output-mode) | |
1816 (set (make-local-variable 'font-lock-defaults) | |
1817 '((checkdoc-output-font-lock-keywords) t t ((?- . "w") (?_ . "w")))) | |
1818 (use-local-map checkdoc-output-mode-map) | |
1819 (run-hooks 'checkdoc-output-mode-hook) | |
1820 (current-buffer)))) | |
1821 | |
1822 (defun checkdoc-find-error-mouse (e) | |
1823 ;; checkdoc-params: (e) | |
1824 "Call `checkdoc-find-error' where the user clicks the mouse." | |
1825 (interactive "e") | |
1826 (mouse-set-point e) | |
1827 (checkdoc-find-error)) | |
1828 | |
1829 (defun checkdoc-find-error () | |
1830 "In a checkdoc diagnostic buffer, find the error under point." | |
1831 (interactive) | |
1832 (beginning-of-line) | |
1833 (if (looking-at "[0-9]+") | |
1834 (let ((l (string-to-int (match-string 0))) | |
1835 (f (save-excursion | |
1836 (re-search-backward " \\(\\(\\w+\\|\\s_\\)+\\.el\\):") | |
1837 (match-string 1)))) | |
1838 (if (not (get-buffer f)) | |
1839 (error "Can't find buffer %s" f)) | |
1840 (switch-to-buffer-other-window (get-buffer f)) | |
1841 (goto-line l)))) | |
1842 | |
1843 (defun checkdoc-start-section (check-type) | |
1844 "Initialize the checkdoc diagnostic buffer for a pass. | |
1845 Create the header so that the string CHECK-TYPE is displayed as the | |
1846 function called to create the messages." | |
1847 (checkdoc-output-to-error-buffer | |
1848 "\n\n*** " (current-time-string) " " | |
1849 (file-name-nondirectory (buffer-file-name)) ": style check: " check-type | |
1850 " V " checkdoc-version)) | |
1851 | |
1852 (defun checkdoc-error (point msg) | |
1853 "Store POINT and MSG as errors in the checkdoc diagnostic buffer." | |
1854 (checkdoc-output-to-error-buffer | |
1855 "\n" (int-to-string (count-lines (point-min) (or point 1))) ": " | |
1856 msg)) | |
1857 | |
1858 (defun checkdoc-output-to-error-buffer (&rest text) | |
1859 "Place TEXT into the checkdoc diagnostic buffer." | |
1860 (save-excursion | |
1861 (set-buffer (checkdoc-output-mode)) | |
1862 (goto-char (point-max)) | |
1863 (apply 'insert text))) | |
1864 | |
1865 (defun checkdoc-show-diagnostics () | |
1866 "Display the checkdoc diagnostic buffer in a temporary window." | |
1867 (let ((b (get-buffer checkdoc-diagnostic-buffer))) | |
1868 (if b (progn (pop-to-buffer b) | |
1869 (beginning-of-line))) | |
1870 (other-window -1) | |
1871 (shrink-window-if-larger-than-buffer))) | |
1872 | |
1873 (defgroup checkdoc nil | |
22195 | 1874 "Support for doc string checking in Emacs Lisp." |
20085 | 1875 :prefix "checkdoc" |
21651
86fcccceba7b
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21181
diff
changeset
|
1876 :group 'lisp |
86fcccceba7b
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21181
diff
changeset
|
1877 :version "20.3") |
20085 | 1878 |
1879 (custom-add-option 'emacs-lisp-mode-hook | |
1880 (lambda () (checkdoc-minor-mode 1))) | |
1881 | |
1882 (provide 'checkdoc) | |
22195 | 1883 |
20085 | 1884 ;;; checkdoc.el ends here |