mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-17 03:10:58 -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:
parent
b7a6f9f791
commit
7e268e9006
2 changed files with 7 additions and 1 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue