diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-08-31 22:20:32 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-08-31 22:20:32 +0000 |
commit | 99b11016b7a6f61eb4717f48e2763cbe2f0349fd (patch) | |
tree | 6b4b4a798ebe66ac6442a03d746d1b8b2aa24f4e | |
parent | e12d55b237ed2ca3b101e8bf2607fd9b3311da9f (diff) | |
download | emacs-99b11016b7a6f61eb4717f48e2763cbe2f0349fd.tar.gz |
(ispell-dictionary-alist-1): For English, remove hyphen from the OTHERCHARS.
-rw-r--r-- | lisp/textmodes/ispell.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index 3b124ccd902..efc6555ae93 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el @@ -408,9 +408,9 @@ for language-specific arguments.") ;;;###autoload (defvar ispell-dictionary-alist-1 ; sk 9-Aug-1991 18:28 '((nil ; default (english.aff) - "[A-Za-z]" "[^A-Za-z]" "[---']" nil ("-B") nil) + "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil) ("english" ; make english explicitly selectable - "[A-Za-z]" "[^A-Za-z]" "[---']" nil ("-B") nil) + "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil) ("deutsch" ; deutsch.aff "[a-zA-Z\"]" "[^a-zA-Z\"]" "[---']" t ("-C") nil) ("deutsch8" |