From 2b2eabedd79f9598e21c1a1d637d121e4d130b68 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Wed, 1 Aug 2001 15:29:35 +0000 Subject: [PATCH] (ispell-alternate-dictionary): Add /usr/share/lib/dict/words, for Irix. --- lisp/ChangeLog | 3 +++ lisp/textmodes/ispell.el | 2 ++ 2 files changed, 5 insertions(+) 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." -- 2.39.2