1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-02 11:21:42 +00:00

(ispell-menu-map-needed): Put back the boundp

check since ispell-process is not bound when ispell is not yet loaded.
This commit is contained in:
Stefan Monnier 2000-08-18 18:46:25 +00:00
parent 9bb7a286d4
commit cdd0f857a6
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2000-08-18 Stefan Monnier <monnier@cs.yale.edu>
* textmodes/ispell.el (ispell-menu-map-needed): Put back the boundp
check since ispell-process is not bound when ispell is not yet loaded.
2000-08-18 Dave Love <fx@gnu.org>
* image.el (find-image): Copy `spec' before using plist-put.
@ -109,6 +114,7 @@
* mail/mh-e.el (mh-make-local-vars):
Replace make-variable-buffer-local with make-local-variable.
* play/landmark.el:
* options.el (Edit-options-{set,toggle,t,nil}):
* mail/mailabbrev.el (mail-abbrevs-mode):
* textmodes/tex-mode.el (tex-expand-files):

View File

@ -862,7 +862,7 @@ and added as a submenu of the \"Edit\" menu.")
:help "Supply explicit path to dictionary"))
(define-key ispell-menu-map [ispell-kill-ispell]
'(menu-item "Kill Process" ispell-kill-ispell
:enable (and ispell-process
:enable (and (boundp 'ispell-process) ispell-process
(eq (ispell-process-status) 'run))
:help "Terminate Ispell subprocess"))
(define-key ispell-menu-map [ispell-pdict-save]