diff options
| author | Eric Abrahamsen | 2018-11-01 13:21:27 -0700 |
|---|---|---|
| committer | Eric Abrahamsen | 2018-11-01 13:21:27 -0700 |
| commit | 97660fa9d60ef138bea7ec5f7a6b5d2880497066 (patch) | |
| tree | 380be2cf0967b8695ced89994ca7440a970a9037 | |
| parent | 96f055bb4b89af240d7151185d8759e9b26d4fdc (diff) | |
| download | emacs-97660fa9d60ef138bea7ec5f7a6b5d2880497066.tar.gz emacs-97660fa9d60ef138bea7ec5f7a6b5d2880497066.zip | |
Doc fix for checkdoc-continue
* lisp/emacs-lisp/checkdoc.el (checkdoc-continue): There is no second
optional argument, and the function always starts from point.
| -rw-r--r-- | lisp/emacs-lisp/checkdoc.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/checkdoc.el b/lisp/emacs-lisp/checkdoc.el index f2bf15d72de..f8f6a5c236f 100644 --- a/lisp/emacs-lisp/checkdoc.el +++ b/lisp/emacs-lisp/checkdoc.el | |||
| @@ -901,9 +901,8 @@ a separate buffer." | |||
| 901 | ;;;###autoload | 901 | ;;;###autoload |
| 902 | (defun checkdoc-continue (&optional take-notes) | 902 | (defun checkdoc-continue (&optional take-notes) |
| 903 | "Find the next doc string in the current buffer which has a style error. | 903 | "Find the next doc string in the current buffer which has a style error. |
| 904 | Prefix argument TAKE-NOTES means to continue through the whole buffer and | 904 | Prefix argument TAKE-NOTES means to continue through the whole |
| 905 | save warnings in a separate buffer. Second optional argument START-POINT | 905 | buffer and save warnings in a separate buffer." |
| 906 | is the starting location. If this is nil, `point-min' is used instead." | ||
| 907 | (interactive "P") | 906 | (interactive "P") |
| 908 | (let ((wrong nil) (msg nil) | 907 | (let ((wrong nil) (msg nil) |
| 909 | ;; Assign a flag to spellcheck flag | 908 | ;; Assign a flag to spellcheck flag |