aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2001-09-23 11:59:20 +0000
committerEli Zaretskii2001-09-23 11:59:20 +0000
commite5b31424022a505152b283c7dc20112be18e18a1 (patch)
tree0e4d04b86d81dfbff083829b9ca859b9f736f7df
parent76829576588b4911f8efac3d2156002e473538d5 (diff)
downloademacs-e5b31424022a505152b283c7dc20112be18e18a1.tar.gz
emacs-e5b31424022a505152b283c7dc20112be18e18a1.zip
Minor fixes for text of help-echo in some options.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/menu-bar.el12
2 files changed, 11 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f215125f97c..8cc4d145b8e 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12001-09-23 Eli Zaretskii <eliz@is.elta.co.il>
2
3 * menu-bar.el (top-level): Minor fixes for text of help-echo in
4 some items of the Options menu.
5
12001-09-22 Stefan Monnier <monnier@cs.yale.edu> 62001-09-22 Stefan Monnier <monnier@cs.yale.edu>
2 7
3 * pcvs-parse.el (cvs-parse-commit): Remove the temp files used by VC. 8 * pcvs-parse.el (cvs-parse-commit): Remove the temp files used by VC.
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el
index 2f48ce99600..00d009df9a8 100644
--- a/lisp/menu-bar.el
+++ b/lisp/menu-bar.el
@@ -634,20 +634,20 @@ Do the same for the keys of the same name."
634 '("--")) 634 '("--"))
635(define-key menu-bar-options-menu [highlight-paren-mode] 635(define-key menu-bar-options-menu [highlight-paren-mode]
636 (menu-bar-make-toggle toggle-highlight-paren-mode show-paren-mode 636 (menu-bar-make-toggle toggle-highlight-paren-mode show-paren-mode
637 "Highlight Matching Parentheses" 637 "Paren Match Highlighting (Show Paren mode)"
638 "Show Paren mode %s" 638 "Show Paren mode %s"
639 "Highlight matching and mismatched parentheses" 639 "Highlight matching/mismatched parentheses at cursor"
640 (show-paren-mode))) 640 (show-paren-mode)))
641(define-key menu-bar-options-menu [transient-mark-mode] 641(define-key menu-bar-options-menu [transient-mark-mode]
642 (menu-bar-make-toggle toggle-transient-mark-mode transient-mark-mode 642 (menu-bar-make-toggle toggle-transient-mark-mode transient-mark-mode
643 "Highlight Marked Text (Transient Mark mode)" 643 "Active Region Highlighting (Transient Mark mode)"
644 "Transient Mark mode %s" 644 "Transient Mark mode %s"
645 "Highlight the marked region when active")) 645 "Make text in active region stand out in color"))
646(define-key menu-bar-options-menu [toggle-global-lazy-font-lock-mode] 646(define-key menu-bar-options-menu [toggle-global-lazy-font-lock-mode]
647 (menu-bar-make-toggle toggle-global-lazy-font-lock-mode global-font-lock-mode 647 (menu-bar-make-toggle toggle-global-lazy-font-lock-mode global-font-lock-mode
648 "Highlight Syntactically" 648 "Syntax Highlighting (Global Font Lock mode)"
649 "Global Font Lock mode %s" 649 "Global Font Lock mode %s"
650 "Highlight text based on language syntax" 650 "Colorize text based on language syntax"
651 (global-font-lock-mode))) 651 (global-font-lock-mode)))
652 652
653 653