diff options
author | Eli Zaretskii <eliz@gnu.org> | 2018-02-16 16:23:43 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2018-02-16 16:23:43 +0200 |
commit | f73905af2dc4ae51195b5cad2562a2c523a3ad39 (patch) | |
tree | 85a2946accb3800f42bd641600a4113d3566fb09 | |
parent | e9c7ddc64b676cfd58a2bce301b1014d2f34f254 (diff) | |
download | emacs-f73905af2dc4ae51195b5cad2562a2c523a3ad39.tar.gz |
Fix the doc string of flyspell-auto-correct-word
* lisp/textmodes/flyspell.el (flyspell-auto-correct-word): Doc
fix. (Bug#30462)
-rw-r--r-- | lisp/textmodes/flyspell.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el index 1d7dc9927e5..0d19dbe140b 100644 --- a/lisp/textmodes/flyspell.el +++ b/lisp/textmodes/flyspell.el @@ -1917,7 +1917,9 @@ before point that's highlighted as misspelled." ;;*---------------------------------------------------------------------*/ (defun flyspell-auto-correct-word () "Correct the current word. -This command proposes various successive corrections for the current word." +This command proposes various successive corrections for the current word. +If invoked repeatedly with point on a word, it cycles through the +possible corrections." (interactive) ;; If we are not in the construct where flyspell should be active, ;; invoke the original binding of M-TAB, if that was recorded. |