(defalias 'check-ispell-version 'ispell-check-version)
+(declare-function flyspell-unhighlight-at "flyspell" (pos))
+
;;; **********************************************************************
;;; The following variables should be set according to personal preference
;;; and location of binaries:
(or no-query
(y-or-n-p "Personal dictionary modified. Save? ")))
(ispell-send-string "#\n") ; save dictionary
- (message "Personal dictionary saved.")
- (when flyspell-mode
- (flyspell-mode 0)
- (flyspell-mode 1)))
+ (message "Personal dictionary saved."))
;; unassert variable, even if not saved to avoid questioning.
(setq ispell-pdict-modified-p nil))
((= char ?i) ; accept and insert word into pers dict
(ispell-send-string (concat "*" word "\n"))
(setq ispell-pdict-modified-p '(t)) ; dictionary modified!
- (when (fboundp 'flyspell-unhighlight-at)
- (flyspell-unhighlight-at start))
+
+ (when flyspell-mode
+ (flyspell-unhighlight-at start))
nil)
((or (= char ?a) (= char ?A)) ; accept word without insert
(ispell-send-string (concat "@" word "\n"))
(cl-pushnew word ispell-buffer-session-localwords
:test #'equal)
- (when (fboundp 'flyspell-unhighlight-at)
- (flyspell-unhighlight-at start))
+ (when flyspell-mode
+ (flyspell-unhighlight-at start))
(or ispell-buffer-local-name ; session localwords might conflict
(setq ispell-buffer-local-name (buffer-name)))
(if (null ispell-pdict-modified-p)