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.
This commit is contained in:
Eric Abrahamsen 2018-11-01 13:21:27 -07:00
parent 96f055bb4b
commit 97660fa9d6

View file

@ -901,9 +901,8 @@ a separate buffer."
;;;###autoload ;;;###autoload
(defun checkdoc-continue (&optional take-notes) (defun checkdoc-continue (&optional take-notes)
"Find the next doc string in the current buffer which has a style error. "Find the next doc string in the current buffer which has a style error.
Prefix argument TAKE-NOTES means to continue through the whole buffer and Prefix argument TAKE-NOTES means to continue through the whole
save warnings in a separate buffer. Second optional argument START-POINT buffer and save warnings in a separate buffer."
is the starting location. If this is nil, `point-min' is used instead."
(interactive "P") (interactive "P")
(let ((wrong nil) (msg nil) (let ((wrong nil) (msg nil)
;; Assign a flag to spellcheck flag ;; Assign a flag to spellcheck flag