From: Eli Zaretskii Date: Sun, 12 Dec 1999 13:15:07 +0000 (+0000) Subject: (menu-bar-edit-menu): Define the Spell submenu even X-Git-Tag: emacs-pretest-21.0.90~5795 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=01511f50e3ca2d71a04675d0f1765e66d83863a8;p=emacs.git (menu-bar-edit-menu): Define the Spell submenu even if start-process is not bound, since Ispell now supports such platforms as well. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 90f74c8f892..340b2855260 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +1999-12-12 Eli Zaretskii + + * menu-bar.el (menu-bar-edit-menu): Define the Spell submenu even + if start-process is not bound, since Ispell now supports such + platforms as well. + 1999-12-12 Gerd Moellmann * mail/rmailsum.el (rmail-summary-mode-map): Bind RET to diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index 90826b3be65..5328fe199bc 100644 --- a/lisp/menu-bar.el +++ b/lisp/menu-bar.el @@ -261,8 +261,7 @@ A large number or nil slows down menu responsiveness." (define-key menu-bar-search-menu [search-forward] '("Search..." . nonincremental-search-forward)) -(if (fboundp 'start-process) - (define-key menu-bar-edit-menu [spell] '("Spell" . ispell-menu-map))) +(define-key menu-bar-edit-menu [spell] '("Spell" . ispell-menu-map)) (define-key menu-bar-edit-menu [fill] '("Fill" . fill-region)) (define-key menu-bar-edit-menu [props] '("Text Properties" . facemenu-menu))