aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorJuanma Barranquero2010-01-14 19:59:31 +0100
committerJuanma Barranquero2010-01-14 19:59:31 +0100
commitd1f18ec0920105223d2aecfd838f8b19921e6340 (patch)
treef98090d895340248c119119406b69974d19cf499 /lisp/textmodes
parent80cd4bb402cd55d9a7efcdf7a77e83cf1118eb61 (diff)
downloademacs-d1f18ec0920105223d2aecfd838f8b19921e6340.tar.gz
emacs-d1f18ec0920105223d2aecfd838f8b19921e6340.zip
Fix typos in docstrings.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/ispell.el18
1 files changed, 9 insertions, 9 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
index 9775f26de64..e35148ac038 100644
--- a/lisp/textmodes/ispell.el
+++ b/lisp/textmodes/ispell.el
@@ -407,7 +407,7 @@ Always stores Fcc copy of message when nil."
407 (if (memq system-type '(windows-nt ms-dos)) "-Ei" "-i") 407 (if (memq system-type '(windows-nt ms-dos)) "-Ei" "-i")
408 "String of options to use when running the program in `ispell-grep-command'. 408 "String of options to use when running the program in `ispell-grep-command'.
409Should probably be \"-i\" or \"-e\". 409Should probably be \"-i\" or \"-e\".
410Some machines (like the NeXT) don't support \"-i\"" 410Some machines (like the NeXT) don't support \"-i\"."
411 :type 'string 411 :type 'string
412 :group 'ispell) 412 :group 'ispell)
413 413
@@ -729,7 +729,7 @@ can be encoded as \\\"a, a\\\", \"a, ...) Defaults are ~tex and ~nroff
729in English. This has the same effect as the command-line `-T' option. 729in English. This has the same effect as the command-line `-T' option.
730The buffer Major Mode controls Ispell's parsing in tex or nroff mode, 730The buffer Major Mode controls Ispell's parsing in tex or nroff mode,
731but the dictionary can control the extended character mode. 731but the dictionary can control the extended character mode.
732Both defaults can be overruled in a buffer-local fashion. See 732Both defaults can be overruled in a buffer-local fashion. See
733`ispell-parsing-keyword' for details on this. 733`ispell-parsing-keyword' for details on this.
734 734
735CHARACTER-SET used for languages with multibyte characters. 735CHARACTER-SET used for languages with multibyte characters.
@@ -744,7 +744,7 @@ LANGUAGE.aff file \(e.g., english.aff\).")
744 "Command line option prefix to select UTF-8 if supported, nil otherwise. 744 "Command line option prefix to select UTF-8 if supported, nil otherwise.
745If UTF-8 if supported by spellchecker and is selectable from the command line 745If UTF-8 if supported by spellchecker and is selectable from the command line
746this variable will contain \"--encoding=\" for aspell and \"-i \" for hunspell, 746this variable will contain \"--encoding=\" for aspell and \"-i \" for hunspell,
747so UTF-8 or other mime charsets can be selected. That will be set for hunspell 747so UTF-8 or other mime charsets can be selected. That will be set for hunspell
748>=1.1.6 or aspell >= 0.60 in `ispell-check-version'. 748>=1.1.6 or aspell >= 0.60 in `ispell-check-version'.
749 749
750For aspell non-nil means to try to automatically find aspell dictionaries. 750For aspell non-nil means to try to automatically find aspell dictionaries.
@@ -752,9 +752,9 @@ Earlier aspell versions do not consistently support UTF-8. Handling
752this would require some extra guessing in `ispell-aspell-find-dictionary'.") 752this would require some extra guessing in `ispell-aspell-find-dictionary'.")
753 753
754(defvar ispell-aspell-supports-utf8 nil 754(defvar ispell-aspell-supports-utf8 nil
755 "Non nil if aspell has consistent command line UTF-8 support. Obsolete. 755 "Non nil if aspell has consistent command line UTF-8 support. Obsolete.
756ispell.el and flyspell.el will use for this purpose the more generic 756ispell.el and flyspell.el will use for this purpose the more generic
757variable `ispell-encoding8-command' for both aspell and hunspell. Is left 757variable `ispell-encoding8-command' for both aspell and hunspell. Is left
758here just for backwards compatibility.") 758here just for backwards compatibility.")
759 759
760(make-obsolete-variable 'ispell-aspell-supports-utf8 760(make-obsolete-variable 'ispell-aspell-supports-utf8
@@ -1048,7 +1048,7 @@ Return the new dictionary alist."
1048;; Set params according to the selected spellchecker 1048;; Set params according to the selected spellchecker
1049 1049
1050(defvar ispell-last-program-name nil 1050(defvar ispell-last-program-name nil
1051 "Last value of `ispell-program-name'. Internal use.") 1051 "Last value of `ispell-program-name'. Internal use.")
1052 1052
1053(defvar ispell-initialize-spellchecker-hook nil 1053(defvar ispell-initialize-spellchecker-hook nil
1054 "Normal hook run on spellchecker initialization. 1054 "Normal hook run on spellchecker initialization.
@@ -1956,7 +1956,7 @@ Global `ispell-quit' set to start location to continue spell session."
1956 ;; If the user types C-g, or generates some other 1956 ;; If the user types C-g, or generates some other
1957 ;; non-character event (such as a frame switch 1957 ;; non-character event (such as a frame switch
1958 ;; event), stop ispell. As a special exception, 1958 ;; event), stop ispell. As a special exception,
1959 ;; ignore mouse events occuring in the same frame. 1959 ;; ignore mouse events occurring in the same frame.
1960 (while (and input-valid (not (characterp char))) 1960 (while (and input-valid (not (characterp char)))
1961 (setq char (read-key)) 1961 (setq char (read-key))
1962 (setq input-valid 1962 (setq input-valid
@@ -2184,7 +2184,7 @@ SPC: Accept word this time.
2184`a': Accept word for this session. 2184`a': Accept word for this session.
2185`A': Accept word and place in `buffer-local dictionary'. 2185`A': Accept word and place in `buffer-local dictionary'.
2186`r': Replace word with typed-in value. Rechecked. 2186`r': Replace word with typed-in value. Rechecked.
2187`R': Replace word with typed-in value. Query-replaced in buffer. Rechecked. 2187`R': Replace word with typed-in value. Query-replaced in buffer. Rechecked.
2188`?': Show these commands. 2188`?': Show these commands.
2189`x': Exit spelling buffer. Move cursor to original point. 2189`x': Exit spelling buffer. Move cursor to original point.
2190`X': Exit spelling buffer. Leaves cursor at the current point, and permits 2190`X': Exit spelling buffer. Leaves cursor at the current point, and permits
@@ -2216,7 +2216,7 @@ SPC: Accept word this time.
2216`a': Accept word for this session. 2216`a': Accept word for this session.
2217`A': Accept word and place in `buffer-local dictionary'. 2217`A': Accept word and place in `buffer-local dictionary'.
2218`r': Replace word with typed-in value. Rechecked. 2218`r': Replace word with typed-in value. Rechecked.
2219`R': Replace word with typed-in value. Query-replaced in buffer. Rechecked. 2219`R': Replace word with typed-in value. Query-replaced in buffer. Rechecked.
2220`?': Show these commands. 2220`?': Show these commands.
2221`x': Exit spelling buffer. Move cursor to original point. 2221`x': Exit spelling buffer. Move cursor to original point.
2222`X': Exit spelling buffer. Leaves cursor at the current point, and permits 2222`X': Exit spelling buffer. Leaves cursor at the current point, and permits