1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(ispell-dictionary-alist-override): New variable.

(ispell-dictionary-alist): Don't setq it,
if ispell-dictionary-alist-override  is set.
This commit is contained in:
Karl Heuer 1999-03-01 03:48:22 +00:00
parent c3d6278e38
commit e540533884

View file

@ -113,14 +113,14 @@
;; BUGS:
;; Accepting definitions in latex mode can mess up math mode skipping...
;; Highlighting in version 19 still doesn't work on tty's.
;; On some versions of emacs, growing the minibuffer fails.
;; Autoloading ispell can result in problems if you need to use a local or
;; modified dictionary. Place the following in your .emacs file to
;; override the autoload definitions:
;; modified dictionary. Place the following in your .emacs file to
;; override the autoload definitions:
;; (setq ispell-dictionary-alist (cons '(dictionary ...)
;; ispell-dictionary-alist))
;; (setq ispell-menu-map nil)
;; (setq ispell-dictionary-alist-override t)
;; (load-library "ispell")
@ -526,9 +526,12 @@ LANGUAGE.aff file \(e.g., english.aff\)."
(const iso-8859-2))))
:group 'ispell)
(defvar ispell-dictionary-alist-override nil)
;;; update the dictionaries at load time
(setq ispell-dictionary-alist
(append ispell-dictionary-alist-1 ispell-dictionary-alist-2))
(unless ispell-dictionary-alist-override
(setq ispell-dictionary-alist
(append ispell-dictionary-alist-1 ispell-dictionary-alist-2)))
;;; The preparation of the menu bar menu must be autoloaded
;;; because otherwise this file gets autoloaded every time Emacs starts