mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Backslash cleanup in Elisp source files
This patch should not change behavior. It typically omits backslashes where they are redundant (e.g., in the string literal "^\$"). In a few places, insert backslashes where they make regular expressions clearer: e.g., replace "^\*" (equivalent to "^*") with "^\\*", which has the same effect as a regular expression. Also, use ‘\ %’ instead of ‘\%’ when avoiding confusion with SCCS IDs, and similarly use ‘\ $’ instead of ‘\$’ when avoiding confusion with RCS IDs, as that makes it clearer that the backslash is intended.
This commit is contained in:
parent
d149ff5233
commit
284c470ef7
237 changed files with 916 additions and 914 deletions
|
|
@ -699,8 +699,8 @@ re-start Emacs."
|
|||
|
||||
Each element of this list is also a list:
|
||||
|
||||
\(DICTIONARY-NAME CASECHARS NOT-CASECHARS OTHERCHARS MANY-OTHERCHARS-P
|
||||
ISPELL-ARGS EXTENDED-CHARACTER-MODE CHARACTER-SET\)
|
||||
(DICTIONARY-NAME CASECHARS NOT-CASECHARS OTHERCHARS MANY-OTHERCHARS-P
|
||||
ISPELL-ARGS EXTENDED-CHARACTER-MODE CHARACTER-SET)
|
||||
|
||||
DICTIONARY-NAME is a possible string value of variable `ispell-dictionary',
|
||||
nil means the default dictionary.
|
||||
|
|
@ -747,7 +747,7 @@ when the language uses non-ASCII characters.
|
|||
Note that with \"ispell\" as the speller, the CASECHARS and
|
||||
OTHERCHARS slots of the alist should contain the same character
|
||||
set as casechars and otherchars in the LANGUAGE.aff file \(e.g.,
|
||||
english.aff\). Aspell and Hunspell don't have this limitation.")
|
||||
english.aff). Aspell and Hunspell don't have this limitation.")
|
||||
|
||||
(defvar ispell-really-aspell nil
|
||||
"Non-nil if we can use Aspell extensions.")
|
||||
|
|
@ -2024,7 +2024,7 @@ in a window allowing you to choose one.
|
|||
|
||||
If optional argument FOLLOWING is non-nil or if `ispell-following-word'
|
||||
is non-nil when called interactively, then the following word
|
||||
\(rather than preceding\) is checked when the cursor is not over a word.
|
||||
\(rather than preceding) is checked when the cursor is not over a word.
|
||||
When the optional argument QUIETLY is non-nil or `ispell-quietly' is non-nil
|
||||
when called interactively, non-corrective messages are suppressed.
|
||||
|
||||
|
|
@ -2044,7 +2044,7 @@ Return values:
|
|||
nil word is correct or spelling is accepted.
|
||||
0 word is inserted into buffer-local definitions.
|
||||
\"word\" word corrected from word list.
|
||||
\(\"word\" arg\) word is hand entered.
|
||||
\(\"word\" arg) word is hand entered.
|
||||
quit spell session exited."
|
||||
(interactive (list ispell-following-word ispell-quietly current-prefix-arg t))
|
||||
(cond
|
||||
|
|
@ -2162,7 +2162,7 @@ quit spell session exited."
|
|||
"Return the word for spell-checking according to ispell syntax.
|
||||
If optional argument FOLLOWING is non-nil or if `ispell-following-word'
|
||||
is non-nil when called interactively, then the following word
|
||||
\(rather than preceding\) is checked when the cursor is not over a word.
|
||||
\(rather than preceding) is checked when the cursor is not over a word.
|
||||
Optional second argument contains otherchars that can be included in word
|
||||
many times (see the doc string of `ispell-dictionary-alist' for details
|
||||
about otherchars).
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue