# HG changeset patch # User Eli Zaretskii # Date 1165669352 0 # Node ID 2fcd50508b5241c50a5f9022d95305b70b3c6659 # Parent 04fe7daa729efc194ef43c2ef90070376190ad2c (flyspell-hack-local-variables-hook): New. Force buffer local defs evaluation on local variables loading. (flyspell-mode-on, flyspell-mode-off): Use it in `hack-local-variables-hook'. diff -r 04fe7daa729e -r 2fcd50508b52 lisp/textmodes/flyspell.el --- a/lisp/textmodes/flyspell.el Sat Dec 09 13:00:10 2006 +0000 +++ b/lisp/textmodes/flyspell.el Sat Dec 09 13:02:32 2006 +0000 @@ -541,6 +541,11 @@ (member (or ispell-local-dictionary ispell-dictionary) flyspell-dictionaries-that-consider-dash-as-word-delimiter))))) +(defun flyspell-hack-local-variables-hook () + ;; When local variables are loaded, see if the dictionary context + ;; has changed. + (flyspell-accept-buffer-local-defs 'force)) + (defun flyspell-kill-ispell-hook () (setq flyspell-last-buffer nil) (dolist (buf (buffer-list)) @@ -579,6 +584,9 @@ (add-hook 'pre-command-hook (function flyspell-pre-command-hook) t t) ;; we bound flyspell action to after-change hook (add-hook 'after-change-functions 'flyspell-after-change-function nil t) + ;; we bound flyspell action to hack-local-variables-hook + (add-hook 'hack-local-variables-hook + (function flyspell-hack-local-variables-hook) t t) ;; set flyspell-generic-check-word-predicate based on the major mode (let ((mode-predicate (get major-mode 'flyspell-mode-predicate))) (if mode-predicate @@ -684,6 +692,8 @@ (remove-hook 'post-command-hook (function flyspell-post-command-hook) t) (remove-hook 'pre-command-hook (function flyspell-pre-command-hook) t) (remove-hook 'after-change-functions 'flyspell-after-change-function t) + (remove-hook 'hack-local-variables-hook + (function flyspell-hack-local-variables-hook) t) ;; we remove all the flyspell hilightings (flyspell-delete-all-overlays) ;; we have to erase pre cache variables