aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAgustín Martín2013-04-05 17:43:07 +0200
committerAgustín Martín2013-04-05 17:43:07 +0200
commit7e268e9006c32eb1b1330aada4220e1a33859ad8 (patch)
treef51dd6252bb02825ddd2a510edf153503dcc4983
parentb7a6f9f7919b7fc0871ae768b58f8e746aa7dd9f (diff)
downloademacs-7e268e9006c32eb1b1330aada4220e1a33859ad8.tar.gz
emacs-7e268e9006c32eb1b1330aada4220e1a33859ad8.zip
ispell.el (ispell-set-spellchecker-params): Really set `ispell-args' for all equivs.
Was not actually modifying ispell-args for dicts where it was nil before. Thanks Jacek Chrzaszcz.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/textmodes/ispell.el3
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index eac9a7b0006..701973648c3 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
2
3 * ispell.el (ispell-set-spellchecker-params):
4 Really set `ispell-args' for all equivs.
5
12013-04-05 Stefan Monnier <monnier@iro.umontreal.ca> 62013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
2 7
3 * ido.el (ido-completions): Use extra elements of ido-decorations 8 * ido.el (ido-completions): Use extra elements of ido-decorations
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
index 467ac004420..a56554f5b66 100644
--- a/lisp/textmodes/ispell.el
+++ b/lisp/textmodes/ispell.el
@@ -1383,7 +1383,8 @@ aspell is used along with Emacs).")
1383 ;; Unless default dict, re-add "-d" option with the mapped value 1383 ;; Unless default dict, re-add "-d" option with the mapped value
1384 (if dict-name 1384 (if dict-name
1385 (if dict-equiv 1385 (if dict-equiv
1386 (nconc ispell-args (list "-d" dict-equiv)) 1386 (setq ispell-args
1387 (nconc ispell-args (list "-d" dict-equiv)))
1387 (message 1388 (message
1388 "ispell-set-spellchecker-params: Missing hunspell equiv for \"%s\". Skipping." 1389 "ispell-set-spellchecker-params: Missing hunspell equiv for \"%s\". Skipping."
1389 dict-name) 1390 dict-name)