From cbef32957480afdb921763a3365637eef3b8824d Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Thu, 10 Dec 1998 03:11:59 +0000 Subject: [PATCH] Take out the eval-when's. --- lisp/textmodes/ispell.el | 9 +++------ 1 file 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 -- 2.39.2