1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-17 11:20:39 -08:00

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.
This commit is contained in:
Agustín Martín 2013-04-05 17:43:07 +02:00
parent b7a6f9f791
commit 7e268e9006
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
* ispell.el (ispell-set-spellchecker-params):
Really set `ispell-args' for all equivs.
2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca> 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
* ido.el (ido-completions): Use extra elements of ido-decorations * ido.el (ido-completions): Use extra elements of ido-decorations

View file

@ -1383,7 +1383,8 @@ aspell is used along with Emacs).")
;; Unless default dict, re-add "-d" option with the mapped value ;; Unless default dict, re-add "-d" option with the mapped value
(if dict-name (if dict-name
(if dict-equiv (if dict-equiv
(nconc ispell-args (list "-d" dict-equiv)) (setq ispell-args
(nconc ispell-args (list "-d" dict-equiv)))
(message (message
"ispell-set-spellchecker-params: Missing hunspell equiv for \"%s\". Skipping." "ispell-set-spellchecker-params: Missing hunspell equiv for \"%s\". Skipping."
dict-name) dict-name)