aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/textmodes/ispell.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
index 9776b74753b..72907525d52 100644
--- a/lisp/textmodes/ispell.el
+++ b/lisp/textmodes/ispell.el
@@ -2863,7 +2863,12 @@ Standard ispell choices are then available."
2863(defun ispell () 2863(defun ispell ()
2864 "Interactively check a region or buffer for spelling errors. 2864 "Interactively check a region or buffer for spelling errors.
2865If `transient-mark-mode' is on, and a region is active, spell-check 2865If `transient-mark-mode' is on, and a region is active, spell-check
2866that region. Otherwise spell-check the buffer." 2866that region. Otherwise spell-check the buffer.
2867
2868Ispell dictionaries are not distributed with Emacs. If you are
2869looking for a dictionary, please see the distribution of the GNU ispell
2870program, or do an Internet search; there are various dictionaries
2871available on the net."
2867 (interactive) 2872 (interactive)
2868 (if (and transient-mark-mode mark-active) 2873 (if (and transient-mark-mode mark-active)
2869 (ispell-region (region-beginning) (region-end)) 2874 (ispell-region (region-beginning) (region-end))