diff options
author | Eli Zaretskii <eliz@gnu.org> | 1999-12-12 13:15:07 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 1999-12-12 13:15:07 +0000 |
commit | 01511f50e3ca2d71a04675d0f1765e66d83863a8 (patch) | |
tree | 7f913b448cba505ea356ea8ec56bb3f1ab3966bf /lisp/menu-bar.el | |
parent | 23ee5556c67ad4a6862a70120350d502dcbcdd91 (diff) | |
download | emacs-01511f50e3ca2d71a04675d0f1765e66d83863a8.tar.gz |
(menu-bar-edit-menu): Define the Spell submenu even
if start-process is not bound, since Ispell now supports such
platforms as well.
Diffstat (limited to 'lisp/menu-bar.el')
-rw-r--r-- | lisp/menu-bar.el | 3 |
1 files changed, 1 insertions, 2 deletions
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)) |