aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1998-12-10 03:11:59 +0000
committerKarl Heuer1998-12-10 03:11:59 +0000
commitcbef32957480afdb921763a3365637eef3b8824d (patch)
treec098c86cecafac280be1bb98a5e1f611d1fb2e52
parentd18b62f2111990ea8d083163e0a334e80fe29fb2 (diff)
downloademacs-cbef32957480afdb921763a3365637eef3b8824d.tar.gz
emacs-cbef32957480afdb921763a3365637eef3b8824d.zip
Take out the eval-when's.
-rw-r--r--lisp/textmodes/ispell.el9
1 files changed, 3 insertions, 6 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
index 92031719f5c..95dbfc3aec2 100644
--- a/lisp/textmodes/ispell.el
+++ b/lisp/textmodes/ispell.el
@@ -527,11 +527,8 @@ LANGUAGE.aff file \(e.g., english.aff\)."
527 :group 'ispell) 527 :group 'ispell)
528 528
529;;; update the dictionaries at load time 529;;; update the dictionaries at load time
530(eval-when (load) 530(setq ispell-dictionary-alist
531 (setq ispell-dictionary-alist 531 (append ispell-dictionary-alist-1 ispell-dictionary-alist-2))
532 (append ispell-dictionary-alist-1 ispell-dictionary-alist-2)))
533
534
535 532
536;;; The preparation of the menu bar menu must be autoloaded 533;;; The preparation of the menu bar menu must be autoloaded
537;;; because otherwise this file gets autoloaded every time Emacs starts 534;;; because otherwise this file gets autoloaded every time Emacs starts
@@ -540,7 +537,7 @@ LANGUAGE.aff file \(e.g., english.aff\)."
540;;;###autoload 537;;;###autoload
541(defvar ispell-menu-map nil "Key map for ispell menu.") 538(defvar ispell-menu-map nil "Key map for ispell menu.")
542;;; redo menu when loading ispell to get dictionary modifications 539;;; redo menu when loading ispell to get dictionary modifications
543(eval-when (load) (setq ispell-menu-map nil)) 540(setq ispell-menu-map nil)
544 541
545;;;###autoload 542;;;###autoload
546(defvar ispell-menu-xemacs nil 543(defvar ispell-menu-xemacs nil