aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2001-08-01 15:29:35 +0000
committerEli Zaretskii2001-08-01 15:29:35 +0000
commit2b2eabedd79f9598e21c1a1d637d121e4d130b68 (patch)
tree25345902d22488b3c99714742aec6e9f3b640982
parent9761cd3ae6e1ab91b3bbf35c6349c54a6bd8a06d (diff)
downloademacs-2b2eabedd79f9598e21c1a1d637d121e4d130b68.tar.gz
emacs-2b2eabedd79f9598e21c1a1d637d121e4d130b68.zip
(ispell-alternate-dictionary): Add /usr/share/lib/dict/words, for Irix.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/textmodes/ispell.el2
2 files changed, 5 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 675263e7128..ac29c56037d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12001-08-01 Eli Zaretskii <eliz@is.elta.co.il> 12001-08-01 Eli Zaretskii <eliz@is.elta.co.il>
2 2
3 * textmodes/ispell.el (ispell-alternate-dictionary): Add
4 /usr/share/lib/dict/words, for Irix.
5
3 * bindings.el: Bind shifted and control-shifted kp-* keys to the 6 * bindings.el: Bind shifted and control-shifted kp-* keys to the
4 corresponding non-kp keys. Suggested by Stephen Gildea 7 corresponding non-kp keys. Suggested by Stephen Gildea
5 <gildea@alum.mit.edu>. 8 <gildea@alum.mit.edu>.
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."
300 ((file-exists-p "/usr/dict/words") "/usr/dict/words") 300 ((file-exists-p "/usr/dict/words") "/usr/dict/words")
301 ((file-exists-p "/usr/lib/dict/words") "/usr/lib/dict/words") 301 ((file-exists-p "/usr/lib/dict/words") "/usr/lib/dict/words")
302 ((file-exists-p "/usr/share/dict/words") "/usr/share/dict/words") 302 ((file-exists-p "/usr/share/dict/words") "/usr/share/dict/words")
303 ((file-exists-p "/usr/share/lib/dict/words")
304 "/usr/share/lib/dict/words")
303 ((file-exists-p "/sys/dict") "/sys/dict") 305 ((file-exists-p "/sys/dict") "/sys/dict")
304 (t "/usr/dict/words")) 306 (t "/usr/dict/words"))
305 "*Alternate dictionary for spelling help." 307 "*Alternate dictionary for spelling help."