diff options
author | Karl Heuer <kwzh@gnu.org> | 1998-12-10 03:11:59 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1998-12-10 03:11:59 +0000 |
commit | cbef32957480afdb921763a3365637eef3b8824d (patch) | |
tree | c098c86cecafac280be1bb98a5e1f611d1fb2e52 /lisp/textmodes | |
parent | d18b62f2111990ea8d083163e0a334e80fe29fb2 (diff) | |
download | emacs-cbef32957480afdb921763a3365637eef3b8824d.tar.gz |
Take out the eval-when's.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r-- | lisp/textmodes/ispell.el | 9 |
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\)." :group 'ispell) ;;; update the dictionaries at load time -(eval-when (load) - (setq ispell-dictionary-alist - (append ispell-dictionary-alist-1 ispell-dictionary-alist-2))) - - +(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 @@ -540,7 +537,7 @@ LANGUAGE.aff file \(e.g., english.aff\)." ;;;###autoload (defvar ispell-menu-map nil "Key map for ispell menu.") ;;; redo menu when loading ispell to get dictionary modifications -(eval-when (load) (setq ispell-menu-map nil)) +(setq ispell-menu-map nil) ;;;###autoload (defvar ispell-menu-xemacs nil |