Changeset 3863 for trunk/lisp/emacs-lisp/checkdoc.el
- Timestamp:
- 2005年09月10日 10時16分00秒 (3 years ago)
- Files:
-
- trunk/lisp/emacs-lisp/checkdoc.el (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/emacs-lisp/checkdoc.el
r3809 r3863 190 190 (defmacro defcustom (var value doc &rest args) 191 191 `(defvar ,var ,value ,doc)))) 192 193 (defvar compilation-error-regexp-alist) 194 (defvar compilation-mode-font-lock-keywords) 192 195 193 196 (defcustom checkdoc-autofix-flag 'semiautomatic … … 654 657 (sit-for 2)))))) 655 658 ;; Move to the next error (if available) 656 ((or (checkdoc-char= c ?n) (checkdoc-char= c ?\ ))659 ((or (checkdoc-char= c ?n) (checkdoc-char= c ?\s)) 657 660 (let ((ne (funcall findfunc nil))) 658 661 (if (not ne)
