diff options
author | Miles Bader <miles@gnu.org> | 2005-09-06 00:25:20 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2005-09-06 00:25:20 +0000 |
commit | 621806aab200b6d9bc592471b55e8664aa3646f3 (patch) | |
tree | 03f0069816f1b8ca9f92532cb16abf6217dc7a94 /lisp/emacs-lisp/checkdoc.el | |
parent | d4cccb140682cfa548a8658f905764ceb4a38cb2 (diff) | |
parent | 4a2358e9b441957fee140ac981cea71720984e6f (diff) | |
download | emacs-621806aab200b6d9bc592471b55e8664aa3646f3.tar.gz emacs-621806aab200b6d9bc592471b55e8664aa3646f3.tar.bz2 emacs-621806aab200b6d9bc592471b55e8664aa3646f3.zip |
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-79
Merge from emacs--cvs-trunk--0
Patches applied:
* emacs--cvs-trunk--0 (patch 519-530)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 106-111)
- Merge from emacs--cvs-trunk--0
- Update from CVS
Diffstat (limited to 'lisp/emacs-lisp/checkdoc.el')
-rw-r--r-- | lisp/emacs-lisp/checkdoc.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/checkdoc.el b/lisp/emacs-lisp/checkdoc.el index 6b6d3ba4393..913ffcf1941 100644 --- a/lisp/emacs-lisp/checkdoc.el +++ b/lisp/emacs-lisp/checkdoc.el @@ -190,6 +190,9 @@ (defmacro defcustom (var value doc &rest args) `(defvar ,var ,value ,doc)))) +(defvar compilation-error-regexp-alist) +(defvar compilation-mode-font-lock-keywords) + (defcustom checkdoc-autofix-flag 'semiautomatic "*Non-nil means attempt auto-fixing of doc strings. If this value is the symbol `query', then the user is queried before @@ -653,7 +656,7 @@ style." "No Additional style errors. Continuing...") (sit-for 2)))))) ;; Move to the next error (if available) - ((or (checkdoc-char= c ?n) (checkdoc-char= c ?\ )) + ((or (checkdoc-char= c ?n) (checkdoc-char= c ?\s)) (let ((ne (funcall findfunc nil))) (if (not ne) (if showstatus |