From: Eli Zaretskii Date: Wed, 1 Aug 2001 15:29:35 +0000 (+0000) Subject: (ispell-alternate-dictionary): Add /usr/share/lib/dict/words, for Irix. X-Git-Tag: emacs-pretest-21.0.105~322 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2b2eabedd79f9598e21c1a1d637d121e4d130b68;p=emacs.git (ispell-alternate-dictionary): Add /usr/share/lib/dict/words, for Irix. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 675263e7128..ac29c56037d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2001-08-01 Eli Zaretskii + * textmodes/ispell.el (ispell-alternate-dictionary): Add + /usr/share/lib/dict/words, for Irix. + * bindings.el: Bind shifted and control-shifted kp-* keys to the corresponding non-kp keys. Suggested by Stephen Gildea . diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index eebd32f2ec0..4e8b6119e51 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el @@ -300,6 +300,8 @@ Must be greater than 1." ((file-exists-p "/usr/dict/words") "/usr/dict/words") ((file-exists-p "/usr/lib/dict/words") "/usr/lib/dict/words") ((file-exists-p "/usr/share/dict/words") "/usr/share/dict/words") + ((file-exists-p "/usr/share/lib/dict/words") + "/usr/share/lib/dict/words") ((file-exists-p "/sys/dict") "/sys/dict") (t "/usr/dict/words")) "*Alternate dictionary for spelling help."