aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii1999-12-12 13:15:07 +0000
committerEli Zaretskii1999-12-12 13:15:07 +0000
commit01511f50e3ca2d71a04675d0f1765e66d83863a8 (patch)
tree7f913b448cba505ea356ea8ec56bb3f1ab3966bf
parent23ee5556c67ad4a6862a70120350d502dcbcdd91 (diff)
downloademacs-01511f50e3ca2d71a04675d0f1765e66d83863a8.tar.gz
emacs-01511f50e3ca2d71a04675d0f1765e66d83863a8.zip
(menu-bar-edit-menu): Define the Spell submenu even
if start-process is not bound, since Ispell now supports such platforms as well.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/menu-bar.el3
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 90f74c8f892..340b2855260 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
11999-12-12 Eli Zaretskii <eliz@is.elta.co.il>
2
3 * menu-bar.el (menu-bar-edit-menu): Define the Spell submenu even
4 if start-process is not bound, since Ispell now supports such
5 platforms as well.
6
11999-12-12 Gerd Moellmann <gerd@gnu.org> 71999-12-12 Gerd Moellmann <gerd@gnu.org>
2 8
3 * mail/rmailsum.el (rmail-summary-mode-map): Bind RET to 9 * 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."
261(define-key menu-bar-search-menu [search-forward] 261(define-key menu-bar-search-menu [search-forward]
262 '("Search..." . nonincremental-search-forward)) 262 '("Search..." . nonincremental-search-forward))
263 263
264(if (fboundp 'start-process) 264(define-key menu-bar-edit-menu [spell] '("Spell" . ispell-menu-map))
265 (define-key menu-bar-edit-menu [spell] '("Spell" . ispell-menu-map)))
266(define-key menu-bar-edit-menu [fill] '("Fill" . fill-region)) 265(define-key menu-bar-edit-menu [fill] '("Fill" . fill-region))
267(define-key menu-bar-edit-menu [props] '("Text Properties" . facemenu-menu)) 266(define-key menu-bar-edit-menu [props] '("Text Properties" . facemenu-menu))
268 267