]> git.eshelyaron.com Git - emacs.git/commitdiff
(ispell-menu-map-needed): Put back the boundp
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 18 Aug 2000 18:46:25 +0000 (18:46 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 18 Aug 2000 18:46:25 +0000 (18:46 +0000)
check since ispell-process is not bound when ispell is not yet loaded.

lisp/ChangeLog
lisp/textmodes/ispell.el

index 0bf841cfd54654fecbbc4619a85e77d5593cf9b6..899a5a50406afb16fdadaef40dd3f92dd08fc479 100644 (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.
        * 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): 
index 9001bdb5ea02f4bf5892d8628ebfbf79f72a6bcc..c536cbe4f8dbe75b8c3030e9751a344c3709f725 100644 (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]