aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2000-09-07 13:51:59 +0000
committerDave Love2000-09-07 13:51:59 +0000
commitdbcee71a279db0f0eab0c56df8f960bd9263de5d (patch)
treedefe6b26d4a185b815de01649d154cceb6018703
parent2b9eeded9345a716d48de9d0678b86669dea3827 (diff)
downloademacs-dbcee71a279db0f0eab0c56df8f960bd9263de5d.tar.gz
emacs-dbcee71a279db0f0eab0c56df8f960bd9263de5d.zip
(menu-bar-options-menu): Fix the font-lock toggle.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/menu-bar.el6
2 files changed, 7 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 062399abcf0..26fd0e4e802 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12000-09-07 Dave Love <fx@gnu.org>
2
3 * menu-bar.el (menu-bar-options-menu): Fix the font-lock toggle.
4
12000-09-07 Kenichi Handa <handa@etl.go.jp> 52000-09-07 Kenichi Handa <handa@etl.go.jp>
2 6
3 * international/quail.el (quail-help): Fix previous change. 7 * international/quail.el (quail-help): Fix previous change.
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el
index 04e6f449ccb..538a12db875 100644
--- a/lisp/menu-bar.el
+++ b/lisp/menu-bar.el
@@ -4,7 +4,7 @@
4 4
5;; Author: RMS 5;; Author: RMS
6;; Maintainer: FSF 6;; Maintainer: FSF
7;; Keywords: internal 7;; Keywords: internal, mouse
8 8
9;; This file is part of GNU Emacs. 9;; This file is part of GNU Emacs.
10 10
@@ -634,7 +634,7 @@ Do the same for the keys of the same name."
634 "Highlight Syntax (Global Font Lock)" 634 "Highlight Syntax (Global Font Lock)"
635 "Syntax Highlighting %s" 635 "Syntax Highlighting %s"
636 "Highlights text based on language syntax" 636 "Highlights text based on language syntax"
637 global-font-lock-mode)) 637 (global-font-lock-mode)))
638 638
639 639
640;; The "Tools" menu items 640;; The "Tools" menu items
@@ -855,7 +855,7 @@ key (or menu-item)"))
855 '(menu-item "Send Bug Report..." report-emacs-bug 855 '(menu-item "Send Bug Report..." report-emacs-bug
856 :help "Send e-mail to Emacs maintainers")) 856 :help "Send e-mail to Emacs maintainers"))
857(define-key menu-bar-help-menu [emacs-manual] 857(define-key menu-bar-help-menu [emacs-manual]
858 '(menu-item "Read the Emacs manual" 858 '(menu-item "Read the Emacs Manual"
859 (lambda () (interactive) (info "emacs")))) 859 (lambda () (interactive) (info "emacs"))))
860(define-key menu-bar-help-menu [emacs-problems] 860(define-key menu-bar-help-menu [emacs-problems]
861 '(menu-item "Emacs Known Problems" view-emacs-problems)) 861 '(menu-item "Emacs Known Problems" view-emacs-problems))