diff options
author | Kenichi Handa <handa@m17n.org> | 2010-01-15 14:13:05 +0900 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2010-01-15 14:13:05 +0900 |
commit | fa0cff43e861a49d9f992ffccbe4f71e29d71e1a (patch) | |
tree | 2a2bf41b76f624200d873bd604176cc6b7237f69 /lisp/textmodes | |
parent | cc320f07d4d1c0033c1728d22421462ab1fcc04e (diff) | |
parent | 56a03f46b825f2c22c7a982e8d4bcb5545908a09 (diff) | |
download | emacs-fa0cff43e861a49d9f992ffccbe4f71e29d71e1a.tar.gz |
from trunk
Diffstat (limited to 'lisp/textmodes')
-rw-r--r-- | lisp/textmodes/bibtex.el | 2 | ||||
-rw-r--r-- | lisp/textmodes/ispell.el | 18 |
2 files changed, 10 insertions, 10 deletions
diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el index 8ad11049ba0..ac7a2e48a15 100644 --- a/lisp/textmodes/bibtex.el +++ b/lisp/textmodes/bibtex.el @@ -2181,7 +2181,7 @@ Formats current entry according to variable `bibtex-entry-format'." (if (memq 'realign format) (bibtex-fill-entry))))) - ;; Unwindform: move point to location where error occured if possible + ;; Unwindform: move point to location where error occurred if possible (if error-field-name (let (bounds) (when (save-excursion 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." (if (memq system-type '(windows-nt ms-dos)) "-Ei" "-i") "String of options to use when running the program in `ispell-grep-command'. Should probably be \"-i\" or \"-e\". -Some machines (like the NeXT) don't support \"-i\"" +Some machines (like the NeXT) don't support \"-i\"." :type 'string :group 'ispell) @@ -729,7 +729,7 @@ can be encoded as \\\"a, a\\\", \"a, ...) Defaults are ~tex and ~nroff in English. This has the same effect as the command-line `-T' option. The buffer Major Mode controls Ispell's parsing in tex or nroff mode, but the dictionary can control the extended character mode. -Both defaults can be overruled in a buffer-local fashion. See +Both defaults can be overruled in a buffer-local fashion. See `ispell-parsing-keyword' for details on this. CHARACTER-SET used for languages with multibyte characters. @@ -744,7 +744,7 @@ LANGUAGE.aff file \(e.g., english.aff\).") "Command line option prefix to select UTF-8 if supported, nil otherwise. If UTF-8 if supported by spellchecker and is selectable from the command line this variable will contain \"--encoding=\" for aspell and \"-i \" for hunspell, -so UTF-8 or other mime charsets can be selected. That will be set for hunspell +so UTF-8 or other mime charsets can be selected. That will be set for hunspell >=1.1.6 or aspell >= 0.60 in `ispell-check-version'. For 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 this would require some extra guessing in `ispell-aspell-find-dictionary'.") (defvar ispell-aspell-supports-utf8 nil - "Non nil if aspell has consistent command line UTF-8 support. Obsolete. + "Non nil if aspell has consistent command line UTF-8 support. Obsolete. ispell.el and flyspell.el will use for this purpose the more generic -variable `ispell-encoding8-command' for both aspell and hunspell. Is left +variable `ispell-encoding8-command' for both aspell and hunspell. Is left here just for backwards compatibility.") (make-obsolete-variable 'ispell-aspell-supports-utf8 @@ -1048,7 +1048,7 @@ Return the new dictionary alist." ;; Set params according to the selected spellchecker (defvar ispell-last-program-name nil - "Last value of `ispell-program-name'. Internal use.") + "Last value of `ispell-program-name'. Internal use.") (defvar ispell-initialize-spellchecker-hook nil "Normal hook run on spellchecker initialization. @@ -1956,7 +1956,7 @@ Global `ispell-quit' set to start location to continue spell session." ;; If the user types C-g, or generates some other ;; non-character event (such as a frame switch ;; event), stop ispell. As a special exception, - ;; ignore mouse events occuring in the same frame. + ;; ignore mouse events occurring in the same frame. (while (and input-valid (not (characterp char))) (setq char (read-key)) (setq input-valid @@ -2184,7 +2184,7 @@ SPC: Accept word this time. `a': Accept word for this session. `A': Accept word and place in `buffer-local dictionary'. `r': Replace word with typed-in value. Rechecked. -`R': Replace word with typed-in value. Query-replaced in buffer. Rechecked. +`R': Replace word with typed-in value. Query-replaced in buffer. Rechecked. `?': Show these commands. `x': Exit spelling buffer. Move cursor to original point. `X': Exit spelling buffer. Leaves cursor at the current point, and permits @@ -2216,7 +2216,7 @@ SPC: Accept word this time. `a': Accept word for this session. `A': Accept word and place in `buffer-local dictionary'. `r': Replace word with typed-in value. Rechecked. -`R': Replace word with typed-in value. Query-replaced in buffer. Rechecked. +`R': Replace word with typed-in value. Query-replaced in buffer. Rechecked. `?': Show these commands. `x': Exit spelling buffer. Move cursor to original point. `X': Exit spelling buffer. Leaves cursor at the current point, and permits |