diff options
| author | Agustín Martín <agustin.martin@hispalinux.es> | 2012-11-05 17:32:35 +0100 |
|---|---|---|
| committer | Agustín Martín <agustin.martin@hispalinux.es> | 2012-11-05 17:32:35 +0100 |
| commit | 53fc914f80ef833cf70bb3b43ab752f011acb4ba (patch) | |
| tree | aeca151af3b1390d4b5e3b2b25b9511b834a7d03 /lisp | |
| parent | c8e3a9c3db7dfb5a04ec2bf4b1aae55809f94de4 (diff) | |
| download | emacs-53fc914f80ef833cf70bb3b43ab752f011acb4ba.tar.gz | |
ispell.el (ispell-program-name): Update spellchecker parameters when customized.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/textmodes/ispell.el | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 09f3a586b4f..72ccfb4caf6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2012-11-05 Agustín Martín Domingo <agustin.martin@hispalinux.es> + + * textmodes/ispell.el (ispell-program-name): Update + spellchecker parameters when customized. + 2012-11-04 Glenn Morris <rgm@gnu.org> * vc/vc-svn.el (vc-svn-state-heuristic): Avoid calling svn. (Bug#7850) diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index d591dc5fa85..de60ac37d9e 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el @@ -357,6 +357,10 @@ Must be greater than 1." "ispell") "Program invoked by \\[ispell-word] and \\[ispell-region] commands." :type 'string + :set (lambda (symbol value) + (set-default symbol value) + (if (featurep 'ispell) + (ispell-set-spellchecker-params))) :group 'ispell) (defcustom ispell-alternate-dictionary |
