diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-07-15 06:55:39 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-07-15 06:55:39 +0000 |
commit | e3a39644f2221d86803f4d1cb72c1011315837c2 (patch) | |
tree | a742457688bcf56c3ad6596a18738a2798653051 /lisp/textmodes/ispell4.el | |
parent | e4953cae7284a33dcaca88256b7777f4467ff304 (diff) | |
download | emacs-e3a39644f2221d86803f4d1cb72c1011315837c2.tar.gz |
(ispell-menu-map): Add missing quote in defalias.
(ispell-window-configuration): Initialize to nil.
Diffstat (limited to 'lisp/textmodes/ispell4.el')
-rw-r--r-- | lisp/textmodes/ispell4.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/ispell4.el b/lisp/textmodes/ispell4.el index 2fd81579bbe..3dbf8e4eec4 100644 --- a/lisp/textmodes/ispell4.el +++ b/lisp/textmodes/ispell4.el @@ -62,7 +62,7 @@ and need not be mentioned here.") ;; Non-nil means we have started showing an alternatives window. ;; This is the window config from before then. -(defvar ispell-window-configuration) +(defvar ispell-window-configuration nil) ;t when :dump command needed (defvar ispell-dump-needed nil) @@ -214,7 +214,7 @@ that have not already been dumped will be lost." (memq major-mode '(plain-TeX-mode LaTeX-mode))) (defvar ispell-menu-map (make-sparse-keymap "Spell")) -(defalias ispell-menu-map ispell-menu-map) +(defalias 'ispell-menu-map ispell-menu-map) (define-key ispell-menu-map [reload-ispell] '("Reload Dictionary" . reload-ispell)) |