* etc/NEWS:
* lisp/textmodes/ispell.el (ispell-region, ispell-buffer): Avoid
passive tense in doc strings and NEWS.
---
*** 'ispell-region' and 'ispell-buffer' now push the mark.
-The location of the last word the user was queried about is pushed to
-the mark ring, so that the user can skip back to the location with
-'C-x C-x'.
+These commands push onto the mark ring the location of the last
+misspelled word where corrections were offered, so that you can then
+skip back to that location with 'C-x C-x'.
** dabbrev
;;;###autoload
(defun ispell-region (reg-start reg-end &optional recheckp shift)
"Interactively check a region for spelling errors.
-Mark is left at the final word that the user was queried about.
+Leave the mark at the last misspelled word that the user was queried about.
Return nil if spell session was terminated, otherwise returns shift offset
amount for last line processed."
;;;###autoload
(defun ispell-buffer ()
"Check the current buffer for spelling errors interactively.
-Mark is left at the final word that the user was queried about."
+Leave the mark at the last misspelled word that the user was queried about."
(interactive)
(ispell-region (point-min) (point-max)))