annotate lisp/menu-bar.el @ 112453:06719a229a46 default tip

* calc/calc.el (calc-default-power-reference-level) (calc-default-field-reference-level): New variables. * calc/calc-units.el (math-standard-units): Add dB and Np. (math-logunits): New variable. (math-extract-logunits, math-logcombine, calcFunc-luplus) (calcFunc-luminus, calc-luplus, calc-luminus, math-logunit-level) (calcFunc-fieldlevel, calcFunc-powerlevel, calc-level): New functions. (math-find-base-units-rec): Add entry for ln(10). * calc/calc-help.el (calc-u-prefix-help): Add logarithmic help. (calc-ul-prefix-help): New function. * calc/calc-ext.el (calc-init-extensions): Autoload new units functions. Add keybindings for new units functions.
author Jay Belanger <jay.p.belanger@gmail.com>
date Sun, 23 Jan 2011 23:08:04 -0600
parents 417b1e4d63cd
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
38412
253f761ad37b Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents: 38155
diff changeset
1 ;;; menu-bar.el --- define a default menu bar
2488
278580be9b4a Added and corrected library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2485
diff changeset
2
106018
227bcb572dbe (menu-bar-tools-menu): Read and send mail entries are not constants. (Bug#4913)
Glenn Morris <rgm@gnu.org>
parents: 105994
diff changeset
3 ;; Copyright (C) 1993, 1994, 1995, 2000, 2001, 2002, 2003, 2004, 2005,
112218
376148b31b5e Add 2011 to FSF/AIST copyright years.
Glenn Morris <rgm@gnu.org>
parents: 111929
diff changeset
4 ;; 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13871
diff changeset
5
2488
278580be9b4a Added and corrected library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2485
diff changeset
6 ;; Author: RMS
17970
720d1f98ae42 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 17696
diff changeset
7 ;; Maintainer: FSF
31461
c613942bdf43 (menu-bar-options-menu): Fix the font-lock toggle.
Dave Love <fx@gnu.org>
parents: 31443
diff changeset
8 ;; Keywords: internal, mouse
110015
280c8ae2476d Add "Package:" file headers to denote built-in packages.
Chong Yidong <cyd@stupidchicken.com>
parents: 109992
diff changeset
9 ;; Package: emacs
2488
278580be9b4a Added and corrected library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2485
diff changeset
10
2485
c34bbe650160 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 2181
diff changeset
11 ;; This file is part of GNU Emacs.
c34bbe650160 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 2181
diff changeset
12
94678
ee5932bf781d Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94491
diff changeset
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
2485
c34bbe650160 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 2181
diff changeset
14 ;; it under the terms of the GNU General Public License as published by
94678
ee5932bf781d Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94491
diff changeset
15 ;; the Free Software Foundation, either version 3 of the License, or
ee5932bf781d Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94491
diff changeset
16 ;; (at your option) any later version.
2485
c34bbe650160 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 2181
diff changeset
17
c34bbe650160 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 2181
diff changeset
18 ;; GNU Emacs is distributed in the hope that it will be useful,
c34bbe650160 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 2181
diff changeset
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
c34bbe650160 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 2181
diff changeset
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
c34bbe650160 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 2181
diff changeset
21 ;; GNU General Public License for more details.
c34bbe650160 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 2181
diff changeset
22
c34bbe650160 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 2181
diff changeset
23 ;; You should have received a copy of the GNU General Public License
94678
ee5932bf781d Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94491
diff changeset
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
2485
c34bbe650160 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 2181
diff changeset
25
12558
98c9ac60aa20 (menu-bar-help-menu): Add finder-by-keyword.
Karl Heuer <kwzh@gnu.org>
parents: 12434
diff changeset
26 ;; Avishai Yacobi suggested some menu rearrangements.
98c9ac60aa20 (menu-bar-help-menu): Add finder-by-keyword.
Karl Heuer <kwzh@gnu.org>
parents: 12434
diff changeset
27
38412
253f761ad37b Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents: 38155
diff changeset
28 ;;; Commentary:
253f761ad37b Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents: 38155
diff changeset
29
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13871
diff changeset
30 ;;; Code:
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13871
diff changeset
31
4668
12289fa93455 Don't clobber existing binding for menu-bar in global-map.
Roland McGrath <roland@gnu.org>
parents: 4628
diff changeset
32 ;; Don't clobber an existing menu-bar keymap, to preserve any menu-bar key
12289fa93455 Don't clobber existing binding for menu-bar in global-map.
Roland McGrath <roland@gnu.org>
parents: 4628
diff changeset
33 ;; definitions made in loaddefs.el.
12289fa93455 Don't clobber existing binding for menu-bar in global-map.
Roland McGrath <roland@gnu.org>
parents: 4628
diff changeset
34 (or (lookup-key global-map [menu-bar])
12289fa93455 Don't clobber existing binding for menu-bar in global-map.
Roland McGrath <roland@gnu.org>
parents: 4628
diff changeset
35 (define-key global-map [menu-bar] (make-sparse-keymap "menu-bar")))
3504
5fb4eefbd7ac (menu-bar-help-menu): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 3500
diff changeset
36 (defvar menu-bar-help-menu (make-sparse-keymap "Help"))
11067
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
37
111215
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
38 (if (not (featurep 'ns))
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
39 ;; Force Help item to come last, after the major mode's own items.
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
40 ;; The symbol used to be called `help', but that gets confused with the
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
41 ;; help key.
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
42 (setq menu-bar-final-items '(help-menu))
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
43 (if (eq system-type 'darwin)
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
44 (setq menu-bar-final-items '(buffer services help-menu))
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
45 (setq menu-bar-final-items '(buffer services hide-app quit))
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
46 ;; Add standard top-level items to GNUstep menu.
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
47 (define-key global-map [menu-bar quit]
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
48 `(menu-item ,(purecopy "Quit") save-buffers-kill-emacs
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
49 :help ,(purecopy "Save unsaved buffers, then exit")))
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
50 (define-key global-map [menu-bar hide-app]
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
51 `(menu-item ,(purecopy "Hide") ns-do-hide-emacs
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
52 :help ,(purecopy "Hide Emacs"))))
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
53 (define-key global-map [menu-bar services] ; set-up in ns-win
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
54 (cons (purecopy "Services") (make-sparse-keymap "Services"))))
11067
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
55
111215
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
56 ;; If running under GNUstep, "Help" is moved and renamed "Info" (see below).
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
57 (or (and (featurep 'ns)
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
58 (not (eq system-type 'darwin)))
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
59 (define-key global-map [menu-bar help-menu]
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
60 (cons (purecopy "Help") menu-bar-help-menu)))
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
61
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
62 (defvar menu-bar-tools-menu (make-sparse-keymap "Tools"))
111215
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
63 (define-key global-map [menu-bar tools]
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
64 (cons (purecopy "Tools") menu-bar-tools-menu))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
65 ;; This definition is just to show what this looks like.
79167
cc88b3f9bb72 (global-buffers-menu-map): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78894
diff changeset
66 ;; It gets modified in place when menu-bar-update-buffers is called.
cc88b3f9bb72 (global-buffers-menu-map): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78894
diff changeset
67 (defvar global-buffers-menu-map (make-sparse-keymap "Buffers"))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
68 (define-key global-map [menu-bar buffer]
105715
6b8dce5c4461 * puresize.h (BASE_PURESIZE): Increase to 1430000.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105619
diff changeset
69 (cons (purecopy "Buffers") global-buffers-menu-map))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
70 (defvar menu-bar-options-menu (make-sparse-keymap "Options"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
71 (define-key global-map [menu-bar options]
105715
6b8dce5c4461 * puresize.h (BASE_PURESIZE): Increase to 1430000.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105619
diff changeset
72 (cons (purecopy "Options") menu-bar-options-menu))
3504
5fb4eefbd7ac (menu-bar-help-menu): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 3500
diff changeset
73 (defvar menu-bar-edit-menu (make-sparse-keymap "Edit"))
111215
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
74 (define-key global-map [menu-bar edit]
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
75 (cons (purecopy "Edit") menu-bar-edit-menu))
58041
78341df33f26 (menu-bar-file-menu): Make this the real name
Richard M. Stallman <rms@gnu.org>
parents: 57867
diff changeset
76 (defvar menu-bar-file-menu (make-sparse-keymap "File"))
111215
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
77 (define-key global-map [menu-bar file]
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
78 (cons (purecopy "File") menu-bar-file-menu))
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
79
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
80 ;; Put "Help" menu at the front, called "Info".
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
81 (and (featurep 'ns)
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
82 (not (eq system-type 'darwin))
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
83 (define-key global-map [menu-bar help-menu]
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
84 (cons (purecopy "Info") menu-bar-help-menu)))
11293
d24be7d7af5d (menu-bar-file-menu): Add back as alias for menu-bar-files-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11235
diff changeset
85
111253
1c494f4d6d40 Fix treatment of menu-bar-files-menu.
Glenn Morris <rgm@gnu.org>
parents: 110342
diff changeset
86 ;; Only declared obsolete (and only made a proper alias) in 23.3.
1c494f4d6d40 Fix treatment of menu-bar-files-menu.
Glenn Morris <rgm@gnu.org>
parents: 110342
diff changeset
87 (define-obsolete-variable-alias 'menu-bar-files-menu 'menu-bar-file-menu "22.1")
44776
f2802fbc2d65 (menu-bar-update-buffers-1): Don't display a directory separator if
Miles Bader <miles@gnu.org>
parents: 44770
diff changeset
88
f2802fbc2d65 (menu-bar-update-buffers-1): Don't display a directory separator if
Miles Bader <miles@gnu.org>
parents: 44770
diff changeset
89 ;; This is referenced by some code below; it is defined in uniquify.el
f2802fbc2d65 (menu-bar-update-buffers-1): Don't display a directory separator if
Miles Bader <miles@gnu.org>
parents: 44770
diff changeset
90 (defvar uniquify-buffer-name-style)
f2802fbc2d65 (menu-bar-update-buffers-1): Don't display a directory separator if
Miles Bader <miles@gnu.org>
parents: 44770
diff changeset
91
105717
34b6eefd60c2 * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
Juanma Barranquero <lekktu@gmail.com>
parents: 105715
diff changeset
92 ;; From emulation/cua-base.el; used below
34b6eefd60c2 * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
Juanma Barranquero <lekktu@gmail.com>
parents: 105715
diff changeset
93 (defvar cua-enable-cua-keys)
34b6eefd60c2 * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
Juanma Barranquero <lekktu@gmail.com>
parents: 105715
diff changeset
94
8010
e199eda519b5 Rearrange the edit and file menus, and add separators.
Richard M. Stallman <rms@gnu.org>
parents: 7811
diff changeset
95
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
96 ;; The "File" menu items
58041
78341df33f26 (menu-bar-file-menu): Make this the real name
Richard M. Stallman <rms@gnu.org>
parents: 57867
diff changeset
97 (define-key menu-bar-file-menu [exit-emacs]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
98 `(menu-item ,(purecopy "Quit") save-buffers-kill-terminal
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
99 :help ,(purecopy "Save unsaved buffers, then exit")))
11067
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
100
58041
78341df33f26 (menu-bar-file-menu): Make this the real name
Richard M. Stallman <rms@gnu.org>
parents: 57867
diff changeset
101 (define-key menu-bar-file-menu [separator-exit]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
102 menu-bar-separator)
8010
e199eda519b5 Rearrange the edit and file menus, and add separators.
Richard M. Stallman <rms@gnu.org>
parents: 7811
diff changeset
103
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
104 ;; Don't use delete-frame as event name because that is a special
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
105 ;; event.
58041
78341df33f26 (menu-bar-file-menu): Make this the real name
Richard M. Stallman <rms@gnu.org>
parents: 57867
diff changeset
106 (define-key menu-bar-file-menu [delete-this-frame]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
107 `(menu-item ,(purecopy "Delete Frame") delete-frame
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
108 :visible (fboundp 'delete-frame)
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
109 :enable (delete-frame-enabled-p)
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
110 :help ,(purecopy "Delete currently selected frame")))
58041
78341df33f26 (menu-bar-file-menu): Make this the real name
Richard M. Stallman <rms@gnu.org>
parents: 57867
diff changeset
111 (define-key menu-bar-file-menu [make-frame-on-display]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
112 `(menu-item ,(purecopy "New Frame on Display...") make-frame-on-display
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
113 :visible (fboundp 'make-frame-on-display)
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
114 :help ,(purecopy "Open a new frame on another display")))
58041
78341df33f26 (menu-bar-file-menu): Make this the real name
Richard M. Stallman <rms@gnu.org>
parents: 57867
diff changeset
115 (define-key menu-bar-file-menu [make-frame]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
116 `(menu-item ,(purecopy "New Frame") make-frame-command
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
117 :visible (fboundp 'make-frame-command)
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
118 :help ,(purecopy "Open a new frame")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
119
58041
78341df33f26 (menu-bar-file-menu): Make this the real name
Richard M. Stallman <rms@gnu.org>
parents: 57867
diff changeset
120 (define-key menu-bar-file-menu [one-window]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
121 `(menu-item ,(purecopy "Remove Splits") delete-other-windows
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
122 :enable (not (one-window-p t nil))
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
123 :help ,(purecopy "Selected window grows to fill the whole frame")))
11067
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
124
58041
78341df33f26 (menu-bar-file-menu): Make this the real name
Richard M. Stallman <rms@gnu.org>
parents: 57867
diff changeset
125 (define-key menu-bar-file-menu [split-window]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
126 `(menu-item ,(purecopy "Split Window") split-window-vertically
65404
b50dda01c73d (menu-bar-menu-frame-live-and-visible-p)
Eli Zaretskii <eliz@gnu.org>
parents: 65399
diff changeset
127 :enable (and (menu-bar-menu-frame-live-and-visible-p)
b50dda01c73d (menu-bar-menu-frame-live-and-visible-p)
Eli Zaretskii <eliz@gnu.org>
parents: 65399
diff changeset
128 (menu-bar-non-minibuffer-window-p))
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
129 :help ,(purecopy "Split selected window in two windows")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
130
58041
78341df33f26 (menu-bar-file-menu): Make this the real name
Richard M. Stallman <rms@gnu.org>
parents: 57867
diff changeset
131 (define-key menu-bar-file-menu [separator-window]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
132 menu-bar-separator)
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
133
58041
78341df33f26 (menu-bar-file-menu): Make this the real name
Richard M. Stallman <rms@gnu.org>
parents: 57867
diff changeset
134 (define-key menu-bar-file-menu [ps-print-region]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
135 `(menu-item ,(purecopy "Postscript Print Region (B+W)") ps-print-region
35684
880d8ce810cc (menu-bar-files-menu): Add menu items for
Gerd Moellmann <gerd@gnu.org>
parents: 33191
diff changeset
136 :enable mark-active
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
137 :help ,(purecopy "Pretty-print marked region in black and white to PostScript printer")))
58041
78341df33f26 (menu-bar-file-menu): Make this the real name
Richard M. Stallman <rms@gnu.org>
parents: 57867
diff changeset
138 (define-key menu-bar-file-menu [ps-print-buffer]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
139 `(menu-item ,(purecopy "Postscript Print Buffer (B+W)") ps-print-buffer
65404
b50dda01c73d (menu-bar-menu-frame-live-and-visible-p)
Eli Zaretskii <eliz@gnu.org>
parents: 65399
diff changeset
140 :enable (menu-bar-menu-frame-live-and-visible-p)
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
141 :help ,(purecopy "Pretty-print current buffer in black and white to PostScript printer")))
58041
78341df33f26 (menu-bar-file-menu): Make this the real name
Richard M. Stallman <rms@gnu.org>
parents: 57867
diff changeset
142 (define-key menu-bar-file-menu [ps-print-region-faces]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
143 `(menu-item ,(purecopy "Postscript Print Region") ps-print-region-with-faces
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
144 :enable mark-active
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
145 :help ,(purecopy "Pretty-print marked region to PostScript printer")))
58041
78341df33f26 (menu-bar-file-menu): Make this the real name
Richard M. Stallman <rms@gnu.org>
parents: 57867
diff changeset
146 (define-key menu-bar-file-menu [ps-print-buffer-faces]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
147 `(menu-item ,(purecopy "Postscript Print Buffer") ps-print-buffer-with-faces
65404
b50dda01c73d (menu-bar-menu-frame-live-and-visible-p)
Eli Zaretskii <eliz@gnu.org>
parents: 65399
diff changeset
148 :enable (menu-bar-menu-frame-live-and-visible-p)
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
149 :help ,(purecopy "Pretty-print current buffer to PostScript printer")))
58041
78341df33f26 (menu-bar-file-menu): Make this the real name
Richard M. Stallman <rms@gnu.org>
parents: 57867
diff changeset
150 (define-key menu-bar-file-menu [print-region]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
151 `(menu-item ,(purecopy "Print Region") print-region
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
152 :enable mark-active
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
153 :help ,(purecopy "Print region between mark and current position")))
58041
78341df33f26 (menu-bar-file-menu): Make this the real name
Richard M. Stallman <rms@gnu.org>
parents: 57867
diff changeset
154 (define-key menu-bar-file-menu [print-buffer]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
155 `(menu-item ,(purecopy "Print Buffer") print-buffer
65404
b50dda01c73d (menu-bar-menu-frame-live-and-visible-p)
Eli Zaretskii <eliz@gnu.org>
parents: 65399
diff changeset
156 :enable (menu-bar-menu-frame-live-and-visible-p)
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
157 :help ,(purecopy "Print current buffer with page headings")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
158
58041
78341df33f26 (menu-bar-file-menu): Make this the real name
Richard M. Stallman <rms@gnu.org>
parents: 57867
diff changeset
159 (define-key menu-bar-file-menu [separator-print]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
160 menu-bar-separator)
8010
e199eda519b5 Rearrange the edit and file menus, and add separators.
Richard M. Stallman <rms@gnu.org>
parents: 7811
diff changeset
161
58041
78341df33f26 (menu-bar-file-menu): Make this the real name
Richard M. Stallman <rms@gnu.org>
parents: 57867
diff changeset
162 (define-key menu-bar-file-menu [recover-session]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
163 `(menu-item ,(purecopy "Recover Crashed Session") recover-session
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
164 :enable (and auto-save-list-file-prefix
30387
b3f8b3df8d4f (menu-bar-files-menu [recover-session]): Make sure auto save directory
Noah Friedman <friedman@splode.com>
parents: 29968
diff changeset
165 (file-directory-p
b3f8b3df8d4f (menu-bar-files-menu [recover-session]): Make sure auto save directory
Noah Friedman <friedman@splode.com>
parents: 29968
diff changeset
166 (file-name-directory auto-save-list-file-prefix))
b3f8b3df8d4f (menu-bar-files-menu [recover-session]): Make sure auto save directory
Noah Friedman <friedman@splode.com>
parents: 29968
diff changeset
167 (directory-files
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
168 (file-name-directory auto-save-list-file-prefix)
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
169 nil
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
170 (concat "\\`"
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
171 (regexp-quote
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
172 (file-name-nondirectory
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
173 auto-save-list-file-prefix)))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
174 t))
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
175 :help ,(purecopy "Recover edits from a crashed session")))
58041
78341df33f26 (menu-bar-file-menu): Make this the real name
Richard M. Stallman <rms@gnu.org>
parents: 57867
diff changeset
176 (define-key menu-bar-file-menu [revert-buffer]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
177 `(menu-item ,(purecopy "Revert Buffer") revert-buffer
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
178 :enable (or revert-buffer-function
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
179 revert-buffer-insert-file-contents-function
49935
78bf19f4f12c (Revert Buffer): Condition on buffer-file-number.
Richard M. Stallman <rms@gnu.org>
parents: 49597
diff changeset
180 (and buffer-file-number
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
181 (or (buffer-modified-p)
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
182 (not (verify-visited-file-modtime
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
183 (current-buffer))))))
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
184 :help ,(purecopy "Re-read current buffer from its file")))
58041
78341df33f26 (menu-bar-file-menu): Make this the real name
Richard M. Stallman <rms@gnu.org>
parents: 57867
diff changeset
185 (define-key menu-bar-file-menu [write-file]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
186 `(menu-item ,(purecopy "Save As...") write-file
65404
b50dda01c73d (menu-bar-menu-frame-live-and-visible-p)
Eli Zaretskii <eliz@gnu.org>
parents: 65399
diff changeset
187 :enable (and (menu-bar-menu-frame-live-and-visible-p)
b50dda01c73d (menu-bar-menu-frame-live-and-visible-p)
Eli Zaretskii <eliz@gnu.org>
parents: 65399
diff changeset
188 (menu-bar-non-minibuffer-window-p))
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
189 :help ,(purecopy "Write current buffer to another file")))
58041
78341df33f26 (menu-bar-file-menu): Make this the real name
Richard M. Stallman <rms@gnu.org>
parents: 57867
diff changeset
190 (define-key menu-bar-file-menu [save-buffer]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
191 `(menu-item ,(purecopy "Save") save-buffer
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
192 :enable (and (buffer-modified-p)
31645
0d9e6ed2718b (menu-bar-files-menu): Disable ``Save'' if
Gerd Moellmann <gerd@gnu.org>
parents: 31471
diff changeset
193 (buffer-file-name)
65404
b50dda01c73d (menu-bar-menu-frame-live-and-visible-p)
Eli Zaretskii <eliz@gnu.org>
parents: 65399
diff changeset
194 (menu-bar-non-minibuffer-window-p))
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
195 :help ,(purecopy "Save current buffer to its file")))
8010
e199eda519b5 Rearrange the edit and file menus, and add separators.
Richard M. Stallman <rms@gnu.org>
parents: 7811
diff changeset
196
58041
78341df33f26 (menu-bar-file-menu): Make this the real name
Richard M. Stallman <rms@gnu.org>
parents: 57867
diff changeset
197 (define-key menu-bar-file-menu [separator-save]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
198 menu-bar-separator)
8010
e199eda519b5 Rearrange the edit and file menus, and add separators.
Richard M. Stallman <rms@gnu.org>
parents: 7811
diff changeset
199
67762
31f77129bc92 * menu-bar.el (menu-find-file-existing): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 67705
diff changeset
200 (defun menu-find-file-existing ()
31f77129bc92 * menu-bar.el (menu-find-file-existing): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 67705
diff changeset
201 "Edit the existing file FILENAME."
31f77129bc92 * menu-bar.el (menu-find-file-existing): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 67705
diff changeset
202 (interactive)
31f77129bc92 * menu-bar.el (menu-find-file-existing): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 67705
diff changeset
203 (let* ((mustmatch (not (and (fboundp 'x-uses-old-gtk-dialog)
31f77129bc92 * menu-bar.el (menu-find-file-existing): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 67705
diff changeset
204 (x-uses-old-gtk-dialog))))
31f77129bc92 * menu-bar.el (menu-find-file-existing): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 67705
diff changeset
205 (filename (car (find-file-read-args "Find file: " mustmatch))))
31f77129bc92 * menu-bar.el (menu-find-file-existing): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 67705
diff changeset
206 (if mustmatch
31f77129bc92 * menu-bar.el (menu-find-file-existing): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 67705
diff changeset
207 (find-file-existing filename)
31f77129bc92 * menu-bar.el (menu-find-file-existing): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 67705
diff changeset
208 (find-file filename))))
31f77129bc92 * menu-bar.el (menu-find-file-existing): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 67705
diff changeset
209
31f77129bc92 * menu-bar.el (menu-find-file-existing): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 67705
diff changeset
210
58041
78341df33f26 (menu-bar-file-menu): Make this the real name
Richard M. Stallman <rms@gnu.org>
parents: 57867
diff changeset
211 (define-key menu-bar-file-menu [kill-buffer]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
212 `(menu-item ,(purecopy "Close") kill-this-buffer
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
213 :enable (kill-this-buffer-enabled-p)
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
214 :help ,(purecopy "Discard (kill) current buffer")))
58041
78341df33f26 (menu-bar-file-menu): Make this the real name
Richard M. Stallman <rms@gnu.org>
parents: 57867
diff changeset
215 (define-key menu-bar-file-menu [insert-file]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
216 `(menu-item ,(purecopy "Insert File...") insert-file
65404
b50dda01c73d (menu-bar-menu-frame-live-and-visible-p)
Eli Zaretskii <eliz@gnu.org>
parents: 65399
diff changeset
217 :enable (menu-bar-non-minibuffer-window-p)
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
218 :help ,(purecopy "Insert another file into current buffer")))
58041
78341df33f26 (menu-bar-file-menu): Make this the real name
Richard M. Stallman <rms@gnu.org>
parents: 57867
diff changeset
219 (define-key menu-bar-file-menu [dired]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
220 `(menu-item ,(purecopy "Open Directory...") dired
65404
b50dda01c73d (menu-bar-menu-frame-live-and-visible-p)
Eli Zaretskii <eliz@gnu.org>
parents: 65399
diff changeset
221 :enable (menu-bar-non-minibuffer-window-p)
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
222 :help ,(purecopy "Read a directory, to operate on its files")))
58041
78341df33f26 (menu-bar-file-menu): Make this the real name
Richard M. Stallman <rms@gnu.org>
parents: 57867
diff changeset
223 (define-key menu-bar-file-menu [open-file]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
224 `(menu-item ,(purecopy "Open File...") menu-find-file-existing
65404
b50dda01c73d (menu-bar-menu-frame-live-and-visible-p)
Eli Zaretskii <eliz@gnu.org>
parents: 65399
diff changeset
225 :enable (menu-bar-non-minibuffer-window-p)
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
226 :help ,(purecopy "Read an existing file into an Emacs buffer")))
58041
78341df33f26 (menu-bar-file-menu): Make this the real name
Richard M. Stallman <rms@gnu.org>
parents: 57867
diff changeset
227 (define-key menu-bar-file-menu [new-file]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
228 `(menu-item ,(purecopy "Visit New File...") find-file
65404
b50dda01c73d (menu-bar-menu-frame-live-and-visible-p)
Eli Zaretskii <eliz@gnu.org>
parents: 65399
diff changeset
229 :enable (menu-bar-non-minibuffer-window-p)
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
230 :help ,(purecopy "Specify a new file's name, to edit the file")))
8525
fcc070bca96d (menu-bar-file-menu): Compare Files renamed to Compare.
Richard M. Stallman <rms@gnu.org>
parents: 8391
diff changeset
231
8010
e199eda519b5 Rearrange the edit and file menus, and add separators.
Richard M. Stallman <rms@gnu.org>
parents: 7811
diff changeset
232
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
233 ;; The "Edit" menu items
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
234
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
235 ;; The "Edit->Search" submenu
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
236 (defvar menu-bar-last-search-type nil
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
237 "Type of last non-incremental search command called from the menu.")
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
238
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
239 (defun nonincremental-repeat-search-forward ()
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
240 "Search forward for the previous search string or regexp."
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
241 (interactive)
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
242 (cond
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
243 ((and (eq menu-bar-last-search-type 'string)
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
244 search-ring)
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
245 (search-forward (car search-ring)))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
246 ((and (eq menu-bar-last-search-type 'regexp)
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
247 regexp-search-ring)
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
248 (re-search-forward (car regexp-search-ring)))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
249 (t
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
250 (error "No previous search"))))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
251
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
252 (defun nonincremental-repeat-search-backward ()
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
253 "Search backward for the previous search string or regexp."
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
254 (interactive)
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
255 (cond
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
256 ((and (eq menu-bar-last-search-type 'string)
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
257 search-ring)
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
258 (search-backward (car search-ring)))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
259 ((and (eq menu-bar-last-search-type 'regexp)
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
260 regexp-search-ring)
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
261 (re-search-backward (car regexp-search-ring)))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
262 (t
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
263 (error "No previous search"))))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
264
11067
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
265 (defun nonincremental-search-forward (string)
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
266 "Read a string and search for it nonincrementally."
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
267 (interactive "sSearch for string: ")
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
268 (setq menu-bar-last-search-type 'string)
11067
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
269 (if (equal string "")
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
270 (search-forward (car search-ring))
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
271 (isearch-update-ring string nil)
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
272 (search-forward string)))
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
273
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
274 (defun nonincremental-search-backward (string)
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
275 "Read a string and search backward for it nonincrementally."
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
276 (interactive "sSearch for string: ")
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
277 (setq menu-bar-last-search-type 'string)
11067
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
278 (if (equal string "")
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
279 (search-backward (car search-ring))
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
280 (isearch-update-ring string nil)
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
281 (search-backward string)))
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
282
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
283 (defun nonincremental-re-search-forward (string)
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
284 "Read a regular expression and search for it nonincrementally."
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
285 (interactive "sSearch for regexp: ")
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
286 (setq menu-bar-last-search-type 'regexp)
11067
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
287 (if (equal string "")
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
288 (re-search-forward (car regexp-search-ring))
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
289 (isearch-update-ring string t)
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
290 (re-search-forward string)))
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
291
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
292 (defun nonincremental-re-search-backward (string)
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
293 "Read a regular expression and search backward for it nonincrementally."
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
294 (interactive "sSearch for regexp: ")
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
295 (setq menu-bar-last-search-type 'regexp)
11067
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
296 (if (equal string "")
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
297 (re-search-backward (car regexp-search-ring))
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
298 (isearch-update-ring string t)
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
299 (re-search-backward string)))
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
300
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
301 (defvar menu-bar-search-menu (make-sparse-keymap "Search"))
11067
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
302
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
303 ;; The Edit->Search->Incremental Search menu
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
304 (defvar menu-bar-i-search-menu
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
305 (make-sparse-keymap "Incremental Search"))
11067
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
306
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
307 (define-key menu-bar-i-search-menu [isearch-backward-regexp]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
308 `(menu-item ,(purecopy "Backward Regexp...") isearch-backward-regexp
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
309 :help ,(purecopy "Search backwards for a regular expression as you type it")))
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
310 (define-key menu-bar-i-search-menu [isearch-forward-regexp]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
311 `(menu-item ,(purecopy "Forward Regexp...") isearch-forward-regexp
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
312 :help ,(purecopy "Search forward for a regular expression as you type it")))
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
313 (define-key menu-bar-i-search-menu [isearch-backward]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
314 `(menu-item ,(purecopy "Backward String...") isearch-backward
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
315 :help ,(purecopy "Search backwards for a string as you type it")))
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
316 (define-key menu-bar-i-search-menu [isearch-forward]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
317 `(menu-item ,(purecopy "Forward String...") isearch-forward
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
318 :help ,(purecopy "Search forward for a string as you type it")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
319
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
320 (define-key menu-bar-search-menu [i-search]
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
321 `(menu-item ,(purecopy "Incremental Search") ,menu-bar-i-search-menu))
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
322 (define-key menu-bar-search-menu [separator-tag-isearch]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
323 menu-bar-separator)
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
324
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
325 (define-key menu-bar-search-menu [tags-continue]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
326 `(menu-item ,(purecopy "Continue Tags Search") tags-loop-continue
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
327 :help ,(purecopy "Continue last tags search operation")))
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
328 (define-key menu-bar-search-menu [tags-srch]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
329 `(menu-item ,(purecopy "Search Tagged Files...") tags-search
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
330 :help ,(purecopy "Search for a regexp in all tagged files")))
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
331 (define-key menu-bar-search-menu [separator-tag-search]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
332 menu-bar-separator)
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
333
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
334 (define-key menu-bar-search-menu [repeat-search-back]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
335 `(menu-item ,(purecopy "Repeat Backwards") nonincremental-repeat-search-backward
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
336 :enable (or (and (eq menu-bar-last-search-type 'string)
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
337 search-ring)
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
338 (and (eq menu-bar-last-search-type 'regexp)
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
339 regexp-search-ring))
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
340 :help ,(purecopy "Repeat last search backwards")))
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
341 (define-key menu-bar-search-menu [repeat-search-fwd]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
342 `(menu-item ,(purecopy "Repeat Forward") nonincremental-repeat-search-forward
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
343 :enable (or (and (eq menu-bar-last-search-type 'string)
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
344 search-ring)
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
345 (and (eq menu-bar-last-search-type 'regexp)
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
346 regexp-search-ring))
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
347 :help ,(purecopy "Repeat last search forward")))
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
348 (define-key menu-bar-search-menu [separator-repeat-search]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
349 menu-bar-separator)
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
350
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
351 (define-key menu-bar-search-menu [re-search-backward]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
352 `(menu-item ,(purecopy "Regexp Backwards...") nonincremental-re-search-backward
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
353 :help ,(purecopy "Search backwards for a regular expression")))
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
354 (define-key menu-bar-search-menu [re-search-forward]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
355 `(menu-item ,(purecopy "Regexp Forward...") nonincremental-re-search-forward
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
356 :help ,(purecopy "Search forward for a regular expression")))
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
357
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
358 (define-key menu-bar-search-menu [search-backward]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
359 `(menu-item ,(purecopy "String Backwards...") nonincremental-search-backward
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
360 :help ,(purecopy "Search backwards for a string")))
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
361 (define-key menu-bar-search-menu [search-forward]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
362 `(menu-item ,(purecopy "String Forward...") nonincremental-search-forward
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
363 :help ,(purecopy "Search forward for a string")))
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
364
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
365 ;; The Edit->Replace submenu
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
366
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
367 (defvar menu-bar-replace-menu (make-sparse-keymap "Replace"))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
368
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
369 (define-key menu-bar-replace-menu [tags-repl-continue]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
370 `(menu-item ,(purecopy "Continue Replace") tags-loop-continue
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
371 :help ,(purecopy "Continue last tags replace operation")))
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
372 (define-key menu-bar-replace-menu [tags-repl]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
373 `(menu-item ,(purecopy "Replace in Tagged Files...") tags-query-replace
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
374 :help ,(purecopy "Interactively replace a regexp in all tagged files")))
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
375 (define-key menu-bar-replace-menu [separator-replace-tags]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
376 menu-bar-separator)
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
377
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
378 (define-key menu-bar-replace-menu [query-replace-regexp]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
379 `(menu-item ,(purecopy "Replace Regexp...") query-replace-regexp
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
380 :enable (not buffer-read-only)
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
381 :help ,(purecopy "Replace regular expression interactively, ask about each occurrence")))
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
382 (define-key menu-bar-replace-menu [query-replace]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
383 `(menu-item ,(purecopy "Replace String...") query-replace
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
384 :enable (not buffer-read-only)
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
385 :help ,(purecopy "Replace string interactively, ask about each occurrence")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
386
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
387 ;;; Assemble the top-level Edit menu items.
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
388 (define-key menu-bar-edit-menu [props]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
389 `(menu-item ,(purecopy "Text Properties") facemenu-menu))
8010
e199eda519b5 Rearrange the edit and file menus, and add separators.
Richard M. Stallman <rms@gnu.org>
parents: 7811
diff changeset
390
111173
c7d5564f0621 Move ns-win.el's rather wacky menu adjustments to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 110456
diff changeset
391 ;; ns-win.el said: Add spell for platorm consistency.
c7d5564f0621 Move ns-win.el's rather wacky menu adjustments to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 110456
diff changeset
392 (if (featurep 'ns)
c7d5564f0621 Move ns-win.el's rather wacky menu adjustments to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 110456
diff changeset
393 (define-key menu-bar-edit-menu [spell]
c7d5564f0621 Move ns-win.el's rather wacky menu adjustments to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 110456
diff changeset
394 `(menu-item ,(purecopy "Spell") ispell-menu-map)))
c7d5564f0621 Move ns-win.el's rather wacky menu adjustments to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 110456
diff changeset
395
39108
bb0557fdcd9a Fix separators in the Edit menu. Bring "Fill" near "Text Properties".
Eli Zaretskii <eliz@gnu.org>
parents: 39080
diff changeset
396 (define-key menu-bar-edit-menu [fill]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
397 `(menu-item ,(purecopy "Fill") fill-region
39108
bb0557fdcd9a Fix separators in the Edit menu. Bring "Fill" near "Text Properties".
Eli Zaretskii <eliz@gnu.org>
parents: 39080
diff changeset
398 :enable (and mark-active (not buffer-read-only))
bb0557fdcd9a Fix separators in the Edit menu. Bring "Fill" near "Text Properties".
Eli Zaretskii <eliz@gnu.org>
parents: 39080
diff changeset
399 :help
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
400 ,(purecopy "Fill text in region to fit between left and right margin")))
39108
bb0557fdcd9a Fix separators in the Edit menu. Bring "Fill" near "Text Properties".
Eli Zaretskii <eliz@gnu.org>
parents: 39080
diff changeset
401
bb0557fdcd9a Fix separators in the Edit menu. Bring "Fill" near "Text Properties".
Eli Zaretskii <eliz@gnu.org>
parents: 39080
diff changeset
402 (define-key menu-bar-edit-menu [separator-bookmark]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
403 menu-bar-separator)
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
404
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
405 (define-key menu-bar-edit-menu [bookmark]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
406 `(menu-item ,(purecopy "Bookmarks") menu-bar-bookmark-map))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
407
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
408 (defvar menu-bar-goto-menu (make-sparse-keymap "Go To"))
11067
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
409
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
410 (define-key menu-bar-goto-menu [set-tags-name]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
411 `(menu-item ,(purecopy "Set Tags File Name...") visit-tags-table
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
412 :help ,(purecopy "Tell Tags commands which tag table file to use")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
413
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
414 (define-key menu-bar-goto-menu [separator-tag-file]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
415 menu-bar-separator)
11067
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
416
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
417 (define-key menu-bar-goto-menu [apropos-tags]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
418 `(menu-item ,(purecopy "Tags Apropos...") tags-apropos
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
419 :help ,(purecopy "Find function/variables whose names match regexp")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
420 (define-key menu-bar-goto-menu [next-tag-otherw]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
421 `(menu-item ,(purecopy "Next Tag in Other Window")
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
422 menu-bar-next-tag-other-window
27773
e209690ccf0a (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
Eli Zaretskii <eliz@gnu.org>
parents: 27730
diff changeset
423 :enable (and (boundp 'tags-location-ring)
e209690ccf0a (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
Eli Zaretskii <eliz@gnu.org>
parents: 27730
diff changeset
424 (not (ring-empty-p tags-location-ring)))
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
425 :help ,(purecopy "Find next function/variable matching last tag name in another window")))
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
426
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
427 (defun menu-bar-next-tag-other-window ()
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
428 "Find the next definition of the tag already specified."
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
429 (interactive)
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
430 (find-tag-other-window nil t))
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
431
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
432 (defun menu-bar-next-tag ()
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
433 "Find the next definition of the tag already specified."
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
434 (interactive)
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
435 (find-tag nil t))
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
436
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
437 (define-key menu-bar-goto-menu [next-tag]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
438 `(menu-item ,(purecopy "Find Next Tag")
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
439 menu-bar-next-tag
27773
e209690ccf0a (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
Eli Zaretskii <eliz@gnu.org>
parents: 27730
diff changeset
440 :enable (and (boundp 'tags-location-ring)
e209690ccf0a (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
Eli Zaretskii <eliz@gnu.org>
parents: 27730
diff changeset
441 (not (ring-empty-p tags-location-ring)))
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
442 :help ,(purecopy "Find next function/variable matching last tag name")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
443 (define-key menu-bar-goto-menu [find-tag-otherw]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
444 `(menu-item ,(purecopy "Find Tag in Other Window...") find-tag-other-window
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
445 :help ,(purecopy "Find function/variable definition in another window")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
446 (define-key menu-bar-goto-menu [find-tag]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
447 `(menu-item ,(purecopy "Find Tag...") find-tag
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
448 :help ,(purecopy "Find definition of function or variable")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
449
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
450 (define-key menu-bar-goto-menu [separator-tags]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
451 menu-bar-separator)
8010
e199eda519b5 Rearrange the edit and file menus, and add separators.
Richard M. Stallman <rms@gnu.org>
parents: 7811
diff changeset
452
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
453 (define-key menu-bar-goto-menu [end-of-buf]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
454 `(menu-item ,(purecopy "Goto End of Buffer") end-of-buffer))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
455 (define-key menu-bar-goto-menu [beg-of-buf]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
456 `(menu-item ,(purecopy "Goto Beginning of Buffer") beginning-of-buffer))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
457 (define-key menu-bar-goto-menu [go-to-pos]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
458 `(menu-item ,(purecopy "Goto Buffer Position...") goto-char
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
459 :help ,(purecopy "Read a number N and go to buffer position N")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
460 (define-key menu-bar-goto-menu [go-to-line]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
461 `(menu-item ,(purecopy "Goto Line...") goto-line
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
462 :help ,(purecopy "Read a line number and go to that line")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
463
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
464 (define-key menu-bar-edit-menu [goto]
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
465 `(menu-item ,(purecopy "Go To") ,menu-bar-goto-menu))
8010
e199eda519b5 Rearrange the edit and file menus, and add separators.
Richard M. Stallman <rms@gnu.org>
parents: 7811
diff changeset
466
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
467 (define-key menu-bar-edit-menu [replace]
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
468 `(menu-item ,(purecopy "Replace") ,menu-bar-replace-menu))
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
469
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
470 (define-key menu-bar-edit-menu [search]
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
471 `(menu-item ,(purecopy "Search") ,menu-bar-search-menu))
8767
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
472
39108
bb0557fdcd9a Fix separators in the Edit menu. Bring "Fill" near "Text Properties".
Eli Zaretskii <eliz@gnu.org>
parents: 39080
diff changeset
473 (define-key menu-bar-edit-menu [separator-search]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
474 menu-bar-separator)
39108
bb0557fdcd9a Fix separators in the Edit menu. Bring "Fill" near "Text Properties".
Eli Zaretskii <eliz@gnu.org>
parents: 39080
diff changeset
475
29968
33751f6d1348 (menu-bar-edit-menu [mark-whole-buffer]): Change name to "Select All".
Eli Zaretskii <eliz@gnu.org>
parents: 29936
diff changeset
476 (define-key menu-bar-edit-menu [mark-whole-buffer]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
477 `(menu-item ,(purecopy "Select All") mark-whole-buffer
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
478 :help ,(purecopy "Mark the whole buffer for a subsequent cut/copy")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
479 (define-key menu-bar-edit-menu [clear]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
480 `(menu-item ,(purecopy "Clear") delete-region
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
481 :enable (and mark-active
112002
dc2134428db3 Bind "Copy" menu item to kill-ring-save, obsoleting menu-bar-kill-ring-save.
Chong Yidong <cyd@stupidchicken.com>
parents: 111991
diff changeset
482 (not buffer-read-only))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
483 :help
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
484 ,(purecopy "Delete the text in region between mark and current position")))
105715
6b8dce5c4461 * puresize.h (BASE_PURESIZE): Increase to 1430000.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105619
diff changeset
485 (defvar yank-menu (cons (purecopy "Select Yank") nil))
8767
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
486 (fset 'yank-menu (cons 'keymap yank-menu))
111173
c7d5564f0621 Move ns-win.el's rather wacky menu adjustments to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 110456
diff changeset
487 (define-key menu-bar-edit-menu (if (featurep 'ns) [select-paste]
c7d5564f0621 Move ns-win.el's rather wacky menu adjustments to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 110456
diff changeset
488 [paste-from-menu])
c7d5564f0621 Move ns-win.el's rather wacky menu adjustments to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 110456
diff changeset
489 ;; ns-win.el said: Change text to be more consistent with
c7d5564f0621 Move ns-win.el's rather wacky menu adjustments to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 110456
diff changeset
490 ;; surrounding menu items `paste', etc."
c7d5564f0621 Move ns-win.el's rather wacky menu adjustments to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 110456
diff changeset
491 `(menu-item ,(purecopy (if (featurep 'ns) "Select and Paste"
c7d5564f0621 Move ns-win.el's rather wacky menu adjustments to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 110456
diff changeset
492 "Paste from Kill Menu")) yank-menu
74383
091b7540d54d (menu-bar-make-toggle): Add "globally" to echo area messages.
Richard M. Stallman <rms@gnu.org>
parents: 74362
diff changeset
493 :enable (and (cdr yank-menu) (not buffer-read-only))
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
494 :help ,(purecopy "Choose a string from the kill ring and paste it")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
495 (define-key menu-bar-edit-menu [paste]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
496 `(menu-item ,(purecopy "Paste") yank
102399
55ec3560f75e (clipboard-yank): avoid checking (x-selection-exists-p) if unbound in
David Reitter <david.reitter@gmail.com>
parents: 102312
diff changeset
497 :enable (and (or
111173
c7d5564f0621 Move ns-win.el's rather wacky menu adjustments to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 110456
diff changeset
498 ;; Emacs compiled --without-x (or --with-ns)
c7d5564f0621 Move ns-win.el's rather wacky menu adjustments to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 110456
diff changeset
499 ;; doesn't have x-selection-exists-p.
102399
55ec3560f75e (clipboard-yank): avoid checking (x-selection-exists-p) if unbound in
David Reitter <david.reitter@gmail.com>
parents: 102312
diff changeset
500 (and (fboundp 'x-selection-exists-p)
110037
314f04d4d276 Fix bug #6944.
Eli Zaretskii <eliz@gnu.org>
parents: 110015
diff changeset
501 (x-selection-exists-p 'CLIPBOARD))
111173
c7d5564f0621 Move ns-win.el's rather wacky menu adjustments to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 110456
diff changeset
502 (if (featurep 'ns) ; like paste-from-menu
c7d5564f0621 Move ns-win.el's rather wacky menu adjustments to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 110456
diff changeset
503 (cdr yank-menu)
c7d5564f0621 Move ns-win.el's rather wacky menu adjustments to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 110456
diff changeset
504 kill-ring))
102399
55ec3560f75e (clipboard-yank): avoid checking (x-selection-exists-p) if unbound in
David Reitter <david.reitter@gmail.com>
parents: 102312
diff changeset
505 (not buffer-read-only))
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
506 :help ,(purecopy "Paste (yank) text most recently cut/copied")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
507 (define-key menu-bar-edit-menu [copy]
111173
c7d5564f0621 Move ns-win.el's rather wacky menu adjustments to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 110456
diff changeset
508 ;; ns-win.el said: Substitute a Copy function that works better
c7d5564f0621 Move ns-win.el's rather wacky menu adjustments to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 110456
diff changeset
509 ;; under X (for GNUstep).
c7d5564f0621 Move ns-win.el's rather wacky menu adjustments to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 110456
diff changeset
510 `(menu-item ,(purecopy "Copy") ,(if (featurep 'ns)
c7d5564f0621 Move ns-win.el's rather wacky menu adjustments to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 110456
diff changeset
511 'ns-copy-including-secondary
112002
dc2134428db3 Bind "Copy" menu item to kill-ring-save, obsoleting menu-bar-kill-ring-save.
Chong Yidong <cyd@stupidchicken.com>
parents: 111991
diff changeset
512 'kill-ring-save)
111173
c7d5564f0621 Move ns-win.el's rather wacky menu adjustments to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 110456
diff changeset
513 :enable mark-active
c7d5564f0621 Move ns-win.el's rather wacky menu adjustments to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 110456
diff changeset
514 :help ,(purecopy "Copy text in region between mark and current position")
c7d5564f0621 Move ns-win.el's rather wacky menu adjustments to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 110456
diff changeset
515 :keys ,(purecopy (if (featurep 'ns)
c7d5564f0621 Move ns-win.el's rather wacky menu adjustments to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 110456
diff changeset
516 "\\[ns-copy-including-secondary]"
c7d5564f0621 Move ns-win.el's rather wacky menu adjustments to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 110456
diff changeset
517 "\\[kill-ring-save]"))))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
518 (define-key menu-bar-edit-menu [cut]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
519 `(menu-item ,(purecopy "Cut") kill-region
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
520 :enable (and mark-active (not buffer-read-only))
32932
dcf315209a36 Modify some menu item help strings.
Dave Love <fx@gnu.org>
parents: 32876
diff changeset
521 :help
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
522 ,(purecopy "Cut (kill) text in region between mark and current position")))
111173
c7d5564f0621 Move ns-win.el's rather wacky menu adjustments to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 110456
diff changeset
523 ;; ns-win.el said: Separate undo from cut/paste section.
c7d5564f0621 Move ns-win.el's rather wacky menu adjustments to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 110456
diff changeset
524 (if (featurep 'ns)
111991
968255ee954a Support for menu separators in the GTK tool-bar.
Chong Yidong <cyd@stupidchicken.com>
parents: 111861
diff changeset
525 (define-key menu-bar-edit-menu [separator-undo] menu-bar-separator))
968255ee954a Support for menu separators in the GTK tool-bar.
Chong Yidong <cyd@stupidchicken.com>
parents: 111861
diff changeset
526
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
527 (define-key menu-bar-edit-menu [undo]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
528 `(menu-item ,(purecopy "Undo") undo
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
529 :enable (and (not buffer-read-only)
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
530 (not (eq t buffer-undo-list))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
531 (if (eq last-command 'undo)
67430
2c1c0c628ff3 (menu-bar-edit-menu): Add listp around pending-undo-list to disable
Juri Linkov <juri@jurta.org>
parents: 67002
diff changeset
532 (listp pending-undo-list)
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
533 (consp buffer-undo-list)))
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
534 :help ,(purecopy "Undo last operation")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
535
112002
dc2134428db3 Bind "Copy" menu item to kill-ring-save, obsoleting menu-bar-kill-ring-save.
Chong Yidong <cyd@stupidchicken.com>
parents: 111991
diff changeset
536 (define-obsolete-function-alias
dc2134428db3 Bind "Copy" menu item to kill-ring-save, obsoleting menu-bar-kill-ring-save.
Chong Yidong <cyd@stupidchicken.com>
parents: 111991
diff changeset
537 'menu-bar-kill-ring-save 'kill-ring-save "24.1")
10721
3d056c5a8319 (menu-bar-kill-ring-save): New function--use as `copy'.
Richard M. Stallman <rms@gnu.org>
parents: 10590
diff changeset
538
6699
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
539 ;; These are alternative definitions for the cut, paste and copy
10721
3d056c5a8319 (menu-bar-kill-ring-save): New function--use as `copy'.
Richard M. Stallman <rms@gnu.org>
parents: 10590
diff changeset
540 ;; menu items. Use them if your system expects these to use the clipboard.
6699
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
541
86231
b4b52674ba3c (top-level): Deactivate clipboard-kill-region and
Martin Rudalics <rudalics@gmx.at>
parents: 85688
diff changeset
542 (put 'clipboard-kill-region 'menu-enable
b4b52674ba3c (top-level): Deactivate clipboard-kill-region and
Martin Rudalics <rudalics@gmx.at>
parents: 85688
diff changeset
543 '(and mark-active (not buffer-read-only)))
6699
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
544 (put 'clipboard-kill-ring-save 'menu-enable 'mark-active)
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
545 (put 'clipboard-yank 'menu-enable
102399
55ec3560f75e (clipboard-yank): avoid checking (x-selection-exists-p) if unbound in
David Reitter <david.reitter@gmail.com>
parents: 102312
diff changeset
546 '(and (or (not (fboundp 'x-selection-exists-p))
55ec3560f75e (clipboard-yank): avoid checking (x-selection-exists-p) if unbound in
David Reitter <david.reitter@gmail.com>
parents: 102312
diff changeset
547 (x-selection-exists-p)
86231
b4b52674ba3c (top-level): Deactivate clipboard-kill-region and
Martin Rudalics <rudalics@gmx.at>
parents: 85688
diff changeset
548 (x-selection-exists-p 'CLIPBOARD))
102399
55ec3560f75e (clipboard-yank): avoid checking (x-selection-exists-p) if unbound in
David Reitter <david.reitter@gmail.com>
parents: 102312
diff changeset
549 (not buffer-read-only)))
6699
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
550
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
551 (defun clipboard-yank ()
23982
f9ccd26b8627 (clipboard-yank): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 23532
diff changeset
552 "Insert the clipboard contents, or the last stretch of killed text."
73005
69d661c19645 (clipboard-yank): bomb out in interactive use if
David Kastrup <dak@gnu.org>
parents: 70972
diff changeset
553 (interactive "*")
6699
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
554 (let ((x-select-enable-clipboard t))
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
555 (yank)))
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
556
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
557 (defun clipboard-kill-ring-save (beg end)
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
558 "Copy region to kill ring, and save in the X clipboard."
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
559 (interactive "r")
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
560 (let ((x-select-enable-clipboard t))
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
561 (kill-ring-save beg end)))
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
562
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
563 (defun clipboard-kill-region (beg end)
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
564 "Kill the region, and save it in the X clipboard."
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
565 (interactive "r")
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
566 (let ((x-select-enable-clipboard t))
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
567 (kill-region beg end)))
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
568
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
569 (defun menu-bar-enable-clipboard ()
8391
bb9718e6e844 (menu-bar-enable-clipboard): Moved here the
Richard M. Stallman <rms@gnu.org>
parents: 8347
diff changeset
570 "Make CUT, PASTE and COPY (keys and menu bar items) use the clipboard.
bb9718e6e844 (menu-bar-enable-clipboard): Moved here the
Richard M. Stallman <rms@gnu.org>
parents: 8347
diff changeset
571 Do the same for the keys of the same name."
6699
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
572 (interactive)
52406
c70762aa82aa (menu-bar-showhide-menu): Amend date and time label
Dave Love <fx@gnu.org>
parents: 52401
diff changeset
573 ;; These are Sun server keysyms for the Cut, Copy and Paste keys
c70762aa82aa (menu-bar-showhide-menu): Amend date and time label
Dave Love <fx@gnu.org>
parents: 52401
diff changeset
574 ;; (also for XFree86 on Sun keyboard):
8391
bb9718e6e844 (menu-bar-enable-clipboard): Moved here the
Richard M. Stallman <rms@gnu.org>
parents: 8347
diff changeset
575 (define-key global-map [f20] 'clipboard-kill-region)
bb9718e6e844 (menu-bar-enable-clipboard): Moved here the
Richard M. Stallman <rms@gnu.org>
parents: 8347
diff changeset
576 (define-key global-map [f16] 'clipboard-kill-ring-save)
bb9718e6e844 (menu-bar-enable-clipboard): Moved here the
Richard M. Stallman <rms@gnu.org>
parents: 8347
diff changeset
577 (define-key global-map [f18] 'clipboard-yank)
52406
c70762aa82aa (menu-bar-showhide-menu): Amend date and time label
Dave Love <fx@gnu.org>
parents: 52401
diff changeset
578 ;; X11R6 versions:
8391
bb9718e6e844 (menu-bar-enable-clipboard): Moved here the
Richard M. Stallman <rms@gnu.org>
parents: 8347
diff changeset
579 (define-key global-map [cut] 'clipboard-kill-region)
bb9718e6e844 (menu-bar-enable-clipboard): Moved here the
Richard M. Stallman <rms@gnu.org>
parents: 8347
diff changeset
580 (define-key global-map [copy] 'clipboard-kill-ring-save)
bb9718e6e844 (menu-bar-enable-clipboard): Moved here the
Richard M. Stallman <rms@gnu.org>
parents: 8347
diff changeset
581 (define-key global-map [paste] 'clipboard-yank))
6699
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
582
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
583 ;; The "Options" menu items
17341
995c8b7bf6df (menu-bar-custom-menu): New variable; add it as a submenu of the Help menu.
Richard M. Stallman <rms@gnu.org>
parents: 17099
diff changeset
584
995c8b7bf6df (menu-bar-custom-menu): New variable; add it as a submenu of the Help menu.
Richard M. Stallman <rms@gnu.org>
parents: 17099
diff changeset
585 (defvar menu-bar-custom-menu (make-sparse-keymap "Customize"))
995c8b7bf6df (menu-bar-custom-menu): New variable; add it as a submenu of the Help menu.
Richard M. Stallman <rms@gnu.org>
parents: 17099
diff changeset
586
18700
cb17c9cd025b (menu-bar-custom-menu): Add several more menu items.
Richard M. Stallman <rms@gnu.org>
parents: 18637
diff changeset
587 (define-key menu-bar-custom-menu [customize-apropos-faces]
112198
0c7ac8e7d5ee * cus-theme.el (customize-themes): Use switch-to-buffer.
Chong Yidong <cyd@stupidchicken.com>
parents: 112002
diff changeset
588 `(menu-item ,(purecopy "Faces Matching...") customize-apropos-faces
0c7ac8e7d5ee * cus-theme.el (customize-themes): Use switch-to-buffer.
Chong Yidong <cyd@stupidchicken.com>
parents: 112002
diff changeset
589 :help ,(purecopy "Browse faces matching a regexp or word list")))
18700
cb17c9cd025b (menu-bar-custom-menu): Add several more menu items.
Richard M. Stallman <rms@gnu.org>
parents: 18637
diff changeset
590 (define-key menu-bar-custom-menu [customize-apropos-options]
112198
0c7ac8e7d5ee * cus-theme.el (customize-themes): Use switch-to-buffer.
Chong Yidong <cyd@stupidchicken.com>
parents: 112002
diff changeset
591 `(menu-item ,(purecopy "Options Matching...") customize-apropos-options
0c7ac8e7d5ee * cus-theme.el (customize-themes): Use switch-to-buffer.
Chong Yidong <cyd@stupidchicken.com>
parents: 112002
diff changeset
592 :help ,(purecopy "Browse options matching a regexp or word list")))
17341
995c8b7bf6df (menu-bar-custom-menu): New variable; add it as a submenu of the Help menu.
Richard M. Stallman <rms@gnu.org>
parents: 17099
diff changeset
593 (define-key menu-bar-custom-menu [customize-apropos]
112198
0c7ac8e7d5ee * cus-theme.el (customize-themes): Use switch-to-buffer.
Chong Yidong <cyd@stupidchicken.com>
parents: 112002
diff changeset
594 `(menu-item ,(purecopy "All Settings Matching...") customize-apropos
0c7ac8e7d5ee * cus-theme.el (customize-themes): Use switch-to-buffer.
Chong Yidong <cyd@stupidchicken.com>
parents: 112002
diff changeset
595 :help ,(purecopy "Browse customizable settings matching a regexp or word list")))
45044
ab83b8e87ebd (menu-bar-custom-menu): Change "Recently Changed Options"
Kim F. Storm <storm@cua.dk>
parents: 44907
diff changeset
596 (define-key menu-bar-custom-menu [separator-1]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
597 menu-bar-separator)
17615
32f90c43d1d2 (menu-bar-custom-menu):
Richard M. Stallman <rms@gnu.org>
parents: 17341
diff changeset
598 (define-key menu-bar-custom-menu [customize-group]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
599 `(menu-item ,(purecopy "Specific Group...") customize-group
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
600 :help ,(purecopy "Customize settings of specific group")))
17341
995c8b7bf6df (menu-bar-custom-menu): New variable; add it as a submenu of the Help menu.
Richard M. Stallman <rms@gnu.org>
parents: 17099
diff changeset
601 (define-key menu-bar-custom-menu [customize-face]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
602 `(menu-item ,(purecopy "Specific Face...") customize-face
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
603 :help ,(purecopy "Customize attributes of specific face")))
18700
cb17c9cd025b (menu-bar-custom-menu): Add several more menu items.
Richard M. Stallman <rms@gnu.org>
parents: 18637
diff changeset
604 (define-key menu-bar-custom-menu [customize-option]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
605 `(menu-item ,(purecopy "Specific Option...") customize-option
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
606 :help ,(purecopy "Customize value of specific option")))
45044
ab83b8e87ebd (menu-bar-custom-menu): Change "Recently Changed Options"
Kim F. Storm <storm@cua.dk>
parents: 44907
diff changeset
607 (define-key menu-bar-custom-menu [separator-2]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
608 menu-bar-separator)
21912
f485fe3e433e *** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents: 21302
diff changeset
609 (define-key menu-bar-custom-menu [customize-changed-options]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
610 `(menu-item ,(purecopy "New Options...") customize-changed-options
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
611 :help ,(purecopy "Options added or changed in recent Emacs versions")))
45044
ab83b8e87ebd (menu-bar-custom-menu): Change "Recently Changed Options"
Kim F. Storm <storm@cua.dk>
parents: 44907
diff changeset
612 (define-key menu-bar-custom-menu [customize-saved]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
613 `(menu-item ,(purecopy "Saved Options") customize-saved
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
614 :help ,(purecopy "Customize previously saved options")))
18700
cb17c9cd025b (menu-bar-custom-menu): Add several more menu items.
Richard M. Stallman <rms@gnu.org>
parents: 18637
diff changeset
615 (define-key menu-bar-custom-menu [separator-3]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
616 menu-bar-separator)
18602
9b34ca7eb8ef Fix previous change.
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 18601
diff changeset
617 (define-key menu-bar-custom-menu [customize-browse]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
618 `(menu-item ,(purecopy "Browse Customization Groups") customize-browse
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
619 :help ,(purecopy "Browse all customization groups")))
18700
cb17c9cd025b (menu-bar-custom-menu): Add several more menu items.
Richard M. Stallman <rms@gnu.org>
parents: 18637
diff changeset
620 (define-key menu-bar-custom-menu [customize]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
621 `(menu-item ,(purecopy "Top-level Customization Group") customize
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
622 :help ,(purecopy "The master group called `Emacs'")))
112198
0c7ac8e7d5ee * cus-theme.el (customize-themes): Use switch-to-buffer.
Chong Yidong <cyd@stupidchicken.com>
parents: 112002
diff changeset
623 (define-key menu-bar-custom-menu [customize-themes]
0c7ac8e7d5ee * cus-theme.el (customize-themes): Use switch-to-buffer.
Chong Yidong <cyd@stupidchicken.com>
parents: 112002
diff changeset
624 `(menu-item ,(purecopy "Custom Themes") customize-themes
0c7ac8e7d5ee * cus-theme.el (customize-themes): Use switch-to-buffer.
Chong Yidong <cyd@stupidchicken.com>
parents: 112002
diff changeset
625 :help ,(purecopy "Choose a pre-defined customization theme")))
17341
995c8b7bf6df (menu-bar-custom-menu): New variable; add it as a submenu of the Help menu.
Richard M. Stallman <rms@gnu.org>
parents: 17099
diff changeset
626
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
627 ;(defvar menu-bar-preferences-menu (make-sparse-keymap "Preferences"))
19617
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
628
47296
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
629 (defmacro menu-bar-make-mm-toggle (fname doc help &optional props)
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
630 "Make a menu-item for a global minor mode toggle.
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
631 FNAME is the minor mode's name (variable and function).
60392
b1d7c58b4f4b (menu-bar-make-mm-toggle): Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents: 60099
diff changeset
632 DOC is the text to use for the menu entry.
47296
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
633 HELP is the text to use for the tooltip.
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
634 PROPS are additional properties."
105715
6b8dce5c4461 * puresize.h (BASE_PURESIZE): Increase to 1430000.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105619
diff changeset
635 `(list 'menu-item (purecopy ,doc) ',fname
105845
20a7667a5619 (menu-bar-make-mm-toggle): Quote each element of `props'.
Juri Linkov <juri@jurta.org>
parents: 105835
diff changeset
636 ,@(mapcar (lambda (p) (list 'quote p)) props)
105835
72831603960b (menu-bar-make-mm-toggle, menu-bar-make-toggle)
Juri Linkov <juri@jurta.org>
parents: 105815
diff changeset
637 :help (purecopy ,help)
72831603960b (menu-bar-make-mm-toggle, menu-bar-make-toggle)
Juri Linkov <juri@jurta.org>
parents: 105815
diff changeset
638 :button '(:toggle . (and (default-boundp ',fname)
72831603960b (menu-bar-make-mm-toggle, menu-bar-make-toggle)
Juri Linkov <juri@jurta.org>
parents: 105815
diff changeset
639 (default-value ',fname)))))
47296
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
640
47421
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
641 (defmacro menu-bar-make-toggle (name variable doc message help &rest body)
19617
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
642 `(progn
57700
0fcbc2db3d03 (menu-bar-make-toggle): Instead of interactive-p,
Richard M. Stallman <rms@gnu.org>
parents: 55266
diff changeset
643 (defun ,name (&optional interactively)
38155
29c8619f91d0 (menu-bar-make-toggle): Construct the
Richard M. Stallman <rms@gnu.org>
parents: 38146
diff changeset
644 ,(concat "Toggle whether to " (downcase (substring help 0 1))
63333
cda186c07437 (menu-bar-make-toggle): Remove stray backslash.
Luc Teirlinck <teirllm@auburn.edu>
parents: 61714
diff changeset
645 (substring help 1) ".
57700
0fcbc2db3d03 (menu-bar-make-toggle): Instead of interactive-p,
Richard M. Stallman <rms@gnu.org>
parents: 55266
diff changeset
646 In an interactive call, record this option as a candidate for saving
0fcbc2db3d03 (menu-bar-make-toggle): Instead of interactive-p,
Richard M. Stallman <rms@gnu.org>
parents: 55266
diff changeset
647 by \"Save Options\" in Custom buffers.")
0fcbc2db3d03 (menu-bar-make-toggle): Instead of interactive-p,
Richard M. Stallman <rms@gnu.org>
parents: 55266
diff changeset
648 (interactive "p")
19617
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
649 (if ,(if body `(progn . ,body)
44499
6c160013fa0e (menu-bar-adv-search-menu): Add incremental search.
Pavel Janík <Pavel@Janik.cz>
parents: 44267
diff changeset
650 `(progn
43246
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
651 (custom-load-symbol ',variable)
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
652 (let ((set (or (get ',variable 'custom-set) 'set-default))
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
653 (get (or (get ',variable 'custom-get) 'default-value)))
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
654 (funcall set ',variable (not (funcall get ',variable))))))
74383
091b7540d54d (menu-bar-make-toggle): Add "globally" to echo area messages.
Richard M. Stallman <rms@gnu.org>
parents: 74362
diff changeset
655 (message ,message "enabled globally")
091b7540d54d (menu-bar-make-toggle): Add "globally" to echo area messages.
Richard M. Stallman <rms@gnu.org>
parents: 74362
diff changeset
656 (message ,message "disabled globally"))
47421
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
657 ;; The function `customize-mark-as-set' must only be called when
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
658 ;; a variable is set interactively, as the purpose is to mark it as
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
659 ;; a candidate for "Save Options", and we do not want to save options
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
660 ;; the user have already set explicitly in his init file.
57700
0fcbc2db3d03 (menu-bar-make-toggle): Instead of interactive-p,
Richard M. Stallman <rms@gnu.org>
parents: 55266
diff changeset
661 (if interactively (customize-mark-as-set ',variable)))
105715
6b8dce5c4461 * puresize.h (BASE_PURESIZE): Increase to 1430000.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105619
diff changeset
662 (list 'menu-item (purecopy ,doc) ',name
105835
72831603960b (menu-bar-make-mm-toggle, menu-bar-make-toggle)
Juri Linkov <juri@jurta.org>
parents: 105815
diff changeset
663 :help (purecopy ,help)
72831603960b (menu-bar-make-mm-toggle, menu-bar-make-toggle)
Juri Linkov <juri@jurta.org>
parents: 105815
diff changeset
664 :button '(:toggle . (and (default-boundp ',variable)
72831603960b (menu-bar-make-mm-toggle, menu-bar-make-toggle)
Juri Linkov <juri@jurta.org>
parents: 105815
diff changeset
665 (default-value ',variable))))))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
666
95786
3050aaaeadc9 (menu-set-font): New function. Bind "Set Default
Chong Yidong <cyd@stupidchicken.com>
parents: 95609
diff changeset
667 ;; Function for setting/saving default font.
3050aaaeadc9 (menu-set-font): New function. Bind "Set Default
Chong Yidong <cyd@stupidchicken.com>
parents: 95609
diff changeset
668
3050aaaeadc9 (menu-set-font): New function. Bind "Set Default
Chong Yidong <cyd@stupidchicken.com>
parents: 95609
diff changeset
669 (defun menu-set-font ()
3050aaaeadc9 (menu-set-font): New function. Bind "Set Default
Chong Yidong <cyd@stupidchicken.com>
parents: 95609
diff changeset
670 "Interactively select a font and make it the default."
3050aaaeadc9 (menu-set-font): New function. Bind "Set Default
Chong Yidong <cyd@stupidchicken.com>
parents: 95609
diff changeset
671 (interactive)
95871
75191063f8b6 (menu-set-font): Use fboundp rather than functionp.
Glenn Morris <rgm@gnu.org>
parents: 95852
diff changeset
672 (let ((font (if (fboundp 'x-select-font)
95852
35f0faee6e04 (menu-set-font): Renamed x-font-dialog to x-select-font.
Chong Yidong <cyd@stupidchicken.com>
parents: 95840
diff changeset
673 (x-select-font)
95786
3050aaaeadc9 (menu-set-font): New function. Bind "Set Default
Chong Yidong <cyd@stupidchicken.com>
parents: 95609
diff changeset
674 (mouse-select-font)))
3050aaaeadc9 (menu-set-font): New function. Bind "Set Default
Chong Yidong <cyd@stupidchicken.com>
parents: 95609
diff changeset
675 spec)
3050aaaeadc9 (menu-set-font): New function. Bind "Set Default
Chong Yidong <cyd@stupidchicken.com>
parents: 95609
diff changeset
676 (when font
102312
473a26ad93a9 (menu-set-font): Fix last fix.
Chong Yidong <cyd@stupidchicken.com>
parents: 102296
diff changeset
677 ;; Be careful here: when set-face-attribute is called for the
473a26ad93a9 (menu-set-font): Fix last fix.
Chong Yidong <cyd@stupidchicken.com>
parents: 102296
diff changeset
678 ;; :font attribute, Emacs tries to guess the best matching font
473a26ad93a9 (menu-set-font): Fix last fix.
Chong Yidong <cyd@stupidchicken.com>
parents: 102296
diff changeset
679 ;; by examining the other face attributes (Bug#2476).
473a26ad93a9 (menu-set-font): Fix last fix.
Chong Yidong <cyd@stupidchicken.com>
parents: 102296
diff changeset
680 (set-face-attribute 'default (selected-frame)
473a26ad93a9 (menu-set-font): Fix last fix.
Chong Yidong <cyd@stupidchicken.com>
parents: 102296
diff changeset
681 :width 'normal
473a26ad93a9 (menu-set-font): Fix last fix.
Chong Yidong <cyd@stupidchicken.com>
parents: 102296
diff changeset
682 :weight 'normal
473a26ad93a9 (menu-set-font): Fix last fix.
Chong Yidong <cyd@stupidchicken.com>
parents: 102296
diff changeset
683 :slant 'normal
473a26ad93a9 (menu-set-font): Fix last fix.
Chong Yidong <cyd@stupidchicken.com>
parents: 102296
diff changeset
684 :font font)
102296
c507d7b836ba (menu-set-font): Assign the same font object to all frames (Bug#2476).
Chong Yidong <cyd@stupidchicken.com>
parents: 101183
diff changeset
685 (let ((font-object (face-attribute 'default :font)))
c507d7b836ba (menu-set-font): Assign the same font object to all frames (Bug#2476).
Chong Yidong <cyd@stupidchicken.com>
parents: 101183
diff changeset
686 (dolist (f (frame-list))
c507d7b836ba (menu-set-font): Assign the same font object to all frames (Bug#2476).
Chong Yidong <cyd@stupidchicken.com>
parents: 101183
diff changeset
687 (and (not (eq f (selected-frame)))
c507d7b836ba (menu-set-font): Assign the same font object to all frames (Bug#2476).
Chong Yidong <cyd@stupidchicken.com>
parents: 101183
diff changeset
688 (display-graphic-p f)
c507d7b836ba (menu-set-font): Assign the same font object to all frames (Bug#2476).
Chong Yidong <cyd@stupidchicken.com>
parents: 101183
diff changeset
689 (set-face-attribute 'default f :font font-object)))
c507d7b836ba (menu-set-font): Assign the same font object to all frames (Bug#2476).
Chong Yidong <cyd@stupidchicken.com>
parents: 101183
diff changeset
690 (set-face-attribute 'default t :font font-object))
95786
3050aaaeadc9 (menu-set-font): New function. Bind "Set Default
Chong Yidong <cyd@stupidchicken.com>
parents: 95609
diff changeset
691 (setq spec (list (list t (face-attr-construct 'default))))
3050aaaeadc9 (menu-set-font): New function. Bind "Set Default
Chong Yidong <cyd@stupidchicken.com>
parents: 95609
diff changeset
692 (put 'default 'customized-face spec)
3050aaaeadc9 (menu-set-font): New function. Bind "Set Default
Chong Yidong <cyd@stupidchicken.com>
parents: 95609
diff changeset
693 (custom-push-theme 'theme-face 'default 'user 'set spec)
3050aaaeadc9 (menu-set-font): New function. Bind "Set Default
Chong Yidong <cyd@stupidchicken.com>
parents: 95609
diff changeset
694 (put 'default 'face-modified nil))))
3050aaaeadc9 (menu-set-font): New function. Bind "Set Default
Chong Yidong <cyd@stupidchicken.com>
parents: 95609
diff changeset
695
106085
cd4cbab8bb21 Handle system default font and changing font parameters.
Jan Djärv <jan.h.d@swipnet.se>
parents: 106018
diff changeset
696
cd4cbab8bb21 Handle system default font and changing font parameters.
Jan Djärv <jan.h.d@swipnet.se>
parents: 106018
diff changeset
697
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
698 ;;; Assemble all the top-level items of the "Options" menu
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
699 (define-key menu-bar-options-menu [customize]
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
700 `(menu-item ,(purecopy "Customize Emacs") ,menu-bar-custom-menu))
29739
96e0d508f234 (menu-bar-options-save): New function.
Dave Love <fx@gnu.org>
parents: 29685
diff changeset
701
96e0d508f234 (menu-bar-options-save): New function.
Dave Love <fx@gnu.org>
parents: 29685
diff changeset
702 (defun menu-bar-options-save ()
96e0d508f234 (menu-bar-options-save): New function.
Dave Love <fx@gnu.org>
parents: 29685
diff changeset
703 "Save current values of Options menu items using Custom."
96e0d508f234 (menu-bar-options-save): New function.
Dave Love <fx@gnu.org>
parents: 29685
diff changeset
704 (interactive)
43167
6dab4dad0093 2002-02-05 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43086
diff changeset
705 (let ((need-save nil))
58586
7bc75f3f915a (menu-bar-options-save): For the options
Richard M. Stallman <rms@gnu.org>
parents: 58041
diff changeset
706 ;; These are set with menu-bar-make-mm-toggle, which does not
7bc75f3f915a (menu-bar-options-save): For the options
Richard M. Stallman <rms@gnu.org>
parents: 58041
diff changeset
707 ;; put on a customized-value property.
61714
de02ab04abd0 (menu-bar-options-save, menu-bar-showhide-menu): Add size-indication-mode.
Lute Kamstra <lute@gnu.org>
parents: 61710
diff changeset
708 (dolist (elt '(line-number-mode column-number-mode size-indication-mode
de02ab04abd0 (menu-bar-options-save, menu-bar-showhide-menu): Add size-indication-mode.
Lute Kamstra <lute@gnu.org>
parents: 61710
diff changeset
709 cua-mode show-paren-mode transient-mark-mode
110342
ba563485f83b Close bug#6211.
Glenn Morris <rgm@gnu.org>
parents: 109941
diff changeset
710 blink-cursor-mode display-time-mode display-battery-mode
ba563485f83b Close bug#6211.
Glenn Morris <rgm@gnu.org>
parents: 109941
diff changeset
711 ;; These are set by other functions that don't set
ba563485f83b Close bug#6211.
Glenn Morris <rgm@gnu.org>
parents: 109941
diff changeset
712 ;; the customized state. Having them here has the
ba563485f83b Close bug#6211.
Glenn Morris <rgm@gnu.org>
parents: 109941
diff changeset
713 ;; side-effect that turning them off via X
ba563485f83b Close bug#6211.
Glenn Morris <rgm@gnu.org>
parents: 109941
diff changeset
714 ;; resources acts like having customized them, but
ba563485f83b Close bug#6211.
Glenn Morris <rgm@gnu.org>
parents: 109941
diff changeset
715 ;; that seems harmless.
ba563485f83b Close bug#6211.
Glenn Morris <rgm@gnu.org>
parents: 109941
diff changeset
716 menu-bar-mode tool-bar-mode))
ba563485f83b Close bug#6211.
Glenn Morris <rgm@gnu.org>
parents: 109941
diff changeset
717 ;; FIXME ? It's a little annoying that running this command
ba563485f83b Close bug#6211.
Glenn Morris <rgm@gnu.org>
parents: 109941
diff changeset
718 ;; always loads cua-base, paren, time, and battery, even if they
ba563485f83b Close bug#6211.
Glenn Morris <rgm@gnu.org>
parents: 109941
diff changeset
719 ;; have not been customized in any way. (Due to custom-load-symbol.)
58586
7bc75f3f915a (menu-bar-options-save): For the options
Richard M. Stallman <rms@gnu.org>
parents: 58041
diff changeset
720 (and (customize-mark-to-save elt)
7bc75f3f915a (menu-bar-options-save): For the options
Richard M. Stallman <rms@gnu.org>
parents: 58041
diff changeset
721 (setq need-save t)))
43246
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
722 ;; These are set with `customize-set-variable'.
58586
7bc75f3f915a (menu-bar-options-save): For the options
Richard M. Stallman <rms@gnu.org>
parents: 58041
diff changeset
723 (dolist (elt '(scroll-bar-mode
61710
7653208ec8d8 (menu-bar-options-save, menu-bar-showhide-menu):
Nick Roberts <nickrob@snap.net.nz>
parents: 61024
diff changeset
724 debug-on-quit debug-on-error
110342
ba563485f83b Close bug#6211.
Glenn Morris <rgm@gnu.org>
parents: 109941
diff changeset
725 ;; Somehow this works, when tool-bar and menu-bar don't.
ba563485f83b Close bug#6211.
Glenn Morris <rgm@gnu.org>
parents: 109941
diff changeset
726 tooltip-mode
45492
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
727 save-place uniquify-buffer-name-style fringe-mode
64760
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
728 indicate-empty-lines indicate-buffer-boundaries
106087
43ff427d730e menu-bar.el(menu-bar-options-save): Add font-use-system-font.
Jan Djärv <jan.h.d@swipnet.se>
parents: 106085
diff changeset
729 case-fold-search font-use-system-font
43252
bccb026d40e4 2002-02-12 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43246
diff changeset
730 current-language-environment default-input-method
43246
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
731 ;; Saving `text-mode-hook' is somewhat questionable,
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
732 ;; as we might get more than we bargain for, if
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
733 ;; other code may has added hooks as well.
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
734 ;; Nonetheless, not saving it would like be confuse
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
735 ;; more often.
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
736 ;; -- Per Abrahamsen <abraham@dina.kvl.dk> 2002-02-11.
110456
8d106071e2c8 Use tool-bar-position in menu Options/Show.
Jan D. <jan.h.d@swipnet.se>
parents: 110357
diff changeset
737 text-mode-hook tool-bar-position))
43246
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
738 (and (get elt 'customized-value)
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
739 (customize-mark-to-save elt)
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
740 (setq need-save t)))
95797
49171eb71c47 (menu-bar-options-save): Minor tweak to last change.
Chong Yidong <cyd@stupidchicken.com>
parents: 95786
diff changeset
741 (when (get 'default 'customized-face)
49171eb71c47 (menu-bar-options-save): Minor tweak to last change.
Chong Yidong <cyd@stupidchicken.com>
parents: 95786
diff changeset
742 (put 'default 'saved-face (get 'default 'customized-face))
49171eb71c47 (menu-bar-options-save): Minor tweak to last change.
Chong Yidong <cyd@stupidchicken.com>
parents: 95786
diff changeset
743 (put 'default 'customized-face nil)
49171eb71c47 (menu-bar-options-save): Minor tweak to last change.
Chong Yidong <cyd@stupidchicken.com>
parents: 95786
diff changeset
744 (setq need-save t))
43167
6dab4dad0093 2002-02-05 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43086
diff changeset
745 ;; Save if we changed anything.
6dab4dad0093 2002-02-05 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43086
diff changeset
746 (when need-save
6dab4dad0093 2002-02-05 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43086
diff changeset
747 (custom-save-all))))
29739
96e0d508f234 (menu-bar-options-save): New function.
Dave Love <fx@gnu.org>
parents: 29685
diff changeset
748
109026
c138aa96dae8 Add preliminary describe-package functionality, and some cleanup.
Chong Yidong <cyd@stupidchicken.com>
parents: 109017
diff changeset
749 (define-key menu-bar-options-menu [package]
c138aa96dae8 Add preliminary describe-package functionality, and some cleanup.
Chong Yidong <cyd@stupidchicken.com>
parents: 109017
diff changeset
750 '(menu-item "Manage Emacs Packages" package-list-packages
c138aa96dae8 Add preliminary describe-package functionality, and some cleanup.
Chong Yidong <cyd@stupidchicken.com>
parents: 109017
diff changeset
751 :help "Install or uninstall additional Emacs packages"))
c138aa96dae8 Add preliminary describe-package functionality, and some cleanup.
Chong Yidong <cyd@stupidchicken.com>
parents: 109017
diff changeset
752
29739
96e0d508f234 (menu-bar-options-save): New function.
Dave Love <fx@gnu.org>
parents: 29685
diff changeset
753 (define-key menu-bar-options-menu [save]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
754 `(menu-item ,(purecopy "Save Options") menu-bar-options-save
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
755 :help ,(purecopy "Save options set from the menu above")))
29739
96e0d508f234 (menu-bar-options-save): New function.
Dave Love <fx@gnu.org>
parents: 29685
diff changeset
756
96e0d508f234 (menu-bar-options-save): New function.
Dave Love <fx@gnu.org>
parents: 29685
diff changeset
757 (define-key menu-bar-options-menu [custom-separator]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
758 menu-bar-separator)
29739
96e0d508f234 (menu-bar-options-save): New function.
Dave Love <fx@gnu.org>
parents: 29685
diff changeset
759
95786
3050aaaeadc9 (menu-set-font): New function. Bind "Set Default
Chong Yidong <cyd@stupidchicken.com>
parents: 95609
diff changeset
760 (define-key menu-bar-options-menu [menu-set-font]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
761 `(menu-item ,(purecopy "Set Default Font...") menu-set-font
95786
3050aaaeadc9 (menu-set-font): New function. Bind "Set Default
Chong Yidong <cyd@stupidchicken.com>
parents: 95609
diff changeset
762 :visible (display-multi-font-p)
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
763 :help ,(purecopy "Select a default font")))
51687
64b052fa52ff (menu-bar-options-menu): Move mouse-set-fonts item here.
Richard M. Stallman <rms@gnu.org>
parents: 51590
diff changeset
764
106085
cd4cbab8bb21 Handle system default font and changing font parameters.
Jan Djärv <jan.h.d@swipnet.se>
parents: 106018
diff changeset
765 (if (featurep 'system-font-setting)
cd4cbab8bb21 Handle system default font and changing font parameters.
Jan Djärv <jan.h.d@swipnet.se>
parents: 106018
diff changeset
766 (define-key menu-bar-options-menu [menu-system-font]
cd4cbab8bb21 Handle system default font and changing font parameters.
Jan Djärv <jan.h.d@swipnet.se>
parents: 106018
diff changeset
767 (menu-bar-make-toggle toggle-use-system-font font-use-system-font
cd4cbab8bb21 Handle system default font and changing font parameters.
Jan Djärv <jan.h.d@swipnet.se>
parents: 106018
diff changeset
768 "Use system font"
cd4cbab8bb21 Handle system default font and changing font parameters.
Jan Djärv <jan.h.d@swipnet.se>
parents: 106018
diff changeset
769 "Use system font: %s"
cd4cbab8bb21 Handle system default font and changing font parameters.
Jan Djärv <jan.h.d@swipnet.se>
parents: 106018
diff changeset
770 "Use the monospaced font defined by the system")))
cd4cbab8bb21 Handle system default font and changing font parameters.
Jan Djärv <jan.h.d@swipnet.se>
parents: 106018
diff changeset
771
cd4cbab8bb21 Handle system default font and changing font parameters.
Jan Djärv <jan.h.d@swipnet.se>
parents: 106018
diff changeset
772
43020
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
773 ;; The "Show/Hide" submenu of menu "Options"
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
774
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
775 (defvar menu-bar-showhide-menu (make-sparse-keymap "Show/Hide"))
43086
2f5ddf0e74ba (menu-bar-help-menu): Use different text for tool-tip.
Pavel Janík <Pavel@Janik.cz>
parents: 43020
diff changeset
776
43216
68ff008e0fbd (menu-bar-options-save): Take care of line-number-mode and
Pavel Janík <Pavel@Janik.cz>
parents: 43167
diff changeset
777 (define-key menu-bar-showhide-menu [column-number-mode]
47421
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
778 (menu-bar-make-mm-toggle column-number-mode
52406
c70762aa82aa (menu-bar-showhide-menu): Amend date and time label
Dave Love <fx@gnu.org>
parents: 52401
diff changeset
779 "Column Numbers"
47421
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
780 "Show the current column number in the mode line"))
43216
68ff008e0fbd (menu-bar-options-save): Take care of line-number-mode and
Pavel Janík <Pavel@Janik.cz>
parents: 43167
diff changeset
781
68ff008e0fbd (menu-bar-options-save): Take care of line-number-mode and
Pavel Janík <Pavel@Janik.cz>
parents: 43167
diff changeset
782 (define-key menu-bar-showhide-menu [line-number-mode]
47421
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
783 (menu-bar-make-mm-toggle line-number-mode
52406
c70762aa82aa (menu-bar-showhide-menu): Amend date and time label
Dave Love <fx@gnu.org>
parents: 52401
diff changeset
784 "Line Numbers"
47421
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
785 "Show the current line number in the mode line"))
43216
68ff008e0fbd (menu-bar-options-save): Take care of line-number-mode and
Pavel Janík <Pavel@Janik.cz>
parents: 43167
diff changeset
786
61714
de02ab04abd0 (menu-bar-options-save, menu-bar-showhide-menu): Add size-indication-mode.
Lute Kamstra <lute@gnu.org>
parents: 61710
diff changeset
787 (define-key menu-bar-showhide-menu [size-indication-mode]
de02ab04abd0 (menu-bar-options-save, menu-bar-showhide-menu): Add size-indication-mode.
Lute Kamstra <lute@gnu.org>
parents: 61710
diff changeset
788 (menu-bar-make-mm-toggle size-indication-mode
de02ab04abd0 (menu-bar-options-save, menu-bar-showhide-menu): Add size-indication-mode.
Lute Kamstra <lute@gnu.org>
parents: 61710
diff changeset
789 "Size Indication"
de02ab04abd0 (menu-bar-options-save, menu-bar-showhide-menu): Add size-indication-mode.
Lute Kamstra <lute@gnu.org>
parents: 61710
diff changeset
790 "Show the size of the buffer in the mode line"))
de02ab04abd0 (menu-bar-options-save, menu-bar-showhide-menu): Add size-indication-mode.
Lute Kamstra <lute@gnu.org>
parents: 61710
diff changeset
791
43216
68ff008e0fbd (menu-bar-options-save): Take care of line-number-mode and
Pavel Janík <Pavel@Janik.cz>
parents: 43167
diff changeset
792 (define-key menu-bar-showhide-menu [linecolumn-separator]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
793 menu-bar-separator)
43216
68ff008e0fbd (menu-bar-options-save): Take care of line-number-mode and
Pavel Janík <Pavel@Janik.cz>
parents: 43167
diff changeset
794
64867
889af80d3f70 (menu-bar-showhide-menu): Add `showhide-battery'.
Juri Linkov <juri@jurta.org>
parents: 64822
diff changeset
795 (define-key menu-bar-showhide-menu [showhide-battery]
889af80d3f70 (menu-bar-showhide-menu): Add `showhide-battery'.
Juri Linkov <juri@jurta.org>
parents: 64822
diff changeset
796 (menu-bar-make-mm-toggle display-battery-mode
64925
2aaaa5e2d539 (menu-bar-options-menu): Standardize capitalization of menu items.
Luc Teirlinck <teirllm@auburn.edu>
parents: 64904
diff changeset
797 "Battery Status"
64867
889af80d3f70 (menu-bar-showhide-menu): Add `showhide-battery'.
Juri Linkov <juri@jurta.org>
parents: 64822
diff changeset
798 "Display battery status information in mode line"))
889af80d3f70 (menu-bar-showhide-menu): Add `showhide-battery'.
Juri Linkov <juri@jurta.org>
parents: 64822
diff changeset
799
43086
2f5ddf0e74ba (menu-bar-help-menu): Use different text for tool-tip.
Pavel Janík <Pavel@Janik.cz>
parents: 43020
diff changeset
800 (define-key menu-bar-showhide-menu [showhide-date-time]
60826
1ab099658b40 (showhide-date-time): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 60465
diff changeset
801 (menu-bar-make-mm-toggle display-time-mode
64904
91a457b76b86 (menu-bar-showhide-menu): Rename "Date, Time and Mail" item to
Luc Teirlinck <teirllm@auburn.edu>
parents: 64885
diff changeset
802 "Time, Load and Mail"
91a457b76b86 (menu-bar-showhide-menu): Rename "Date, Time and Mail" item to
Luc Teirlinck <teirllm@auburn.edu>
parents: 64885
diff changeset
803 "Display time, system load averages and \
91a457b76b86 (menu-bar-showhide-menu): Rename "Date, Time and Mail" item to
Luc Teirlinck <teirllm@auburn.edu>
parents: 64885
diff changeset
804 mail status in mode line"))
43086
2f5ddf0e74ba (menu-bar-help-menu): Use different text for tool-tip.
Pavel Janík <Pavel@Janik.cz>
parents: 43020
diff changeset
805
2f5ddf0e74ba (menu-bar-help-menu): Use different text for tool-tip.
Pavel Janík <Pavel@Janik.cz>
parents: 43020
diff changeset
806 (define-key menu-bar-showhide-menu [datetime-separator]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
807 menu-bar-separator)
43086
2f5ddf0e74ba (menu-bar-help-menu): Use different text for tool-tip.
Pavel Janík <Pavel@Janik.cz>
parents: 43020
diff changeset
808
43383
d21a74d23497 2002-02-17 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43305
diff changeset
809 (define-key menu-bar-showhide-menu [showhide-speedbar]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
810 `(menu-item ,(purecopy "Speedbar") speedbar-frame-mode
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
811 :help ,(purecopy "Display a Speedbar quick-navigation frame")
43383
d21a74d23497 2002-02-17 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43305
diff changeset
812 :button (:toggle
d21a74d23497 2002-02-17 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43305
diff changeset
813 . (and (boundp 'speedbar-frame)
d21a74d23497 2002-02-17 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43305
diff changeset
814 (frame-live-p (symbol-value 'speedbar-frame))
44499
6c160013fa0e (menu-bar-adv-search-menu): Add incremental search.
Pavel Janík <Pavel@Janik.cz>
parents: 44267
diff changeset
815 (frame-visible-p
43383
d21a74d23497 2002-02-17 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43305
diff changeset
816 (symbol-value 'speedbar-frame))))))
d21a74d23497 2002-02-17 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43305
diff changeset
817
64760
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
818 (defvar menu-bar-showhide-fringe-menu (make-sparse-keymap "Fringe"))
58598
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
819
64760
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
820 (defvar menu-bar-showhide-fringe-ind-menu
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
821 (make-sparse-keymap "Buffer boundaries"))
58598
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
822
64760
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
823 (defun menu-bar-showhide-fringe-ind-customize ()
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
824 "Show customization buffer for `indicate-buffer-boundaries'."
58598
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
825 (interactive)
64760
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
826 (customize-variable 'indicate-buffer-boundaries))
58598
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
827
64760
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
828 (define-key menu-bar-showhide-fringe-ind-menu [customize]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
829 `(menu-item ,(purecopy "Other (Customize)")
64760
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
830 menu-bar-showhide-fringe-ind-customize
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
831 :help ,(purecopy "Additional choices available through Custom buffer")
93155
09cc3d0d41ce (menu-bar-showhide-fringe-ind-menu) [customize]: Add radio button.
Andreas Schwab <schwab@suse.de>
parents: 93154
diff changeset
832 :visible (display-graphic-p)
09cc3d0d41ce (menu-bar-showhide-fringe-ind-menu) [customize]: Add radio button.
Andreas Schwab <schwab@suse.de>
parents: 93154
diff changeset
833 :button (:radio . (not (member indicate-buffer-boundaries
09cc3d0d41ce (menu-bar-showhide-fringe-ind-menu) [customize]: Add radio button.
Andreas Schwab <schwab@suse.de>
parents: 93154
diff changeset
834 '(nil left right
09cc3d0d41ce (menu-bar-showhide-fringe-ind-menu) [customize]: Add radio button.
Andreas Schwab <schwab@suse.de>
parents: 93154
diff changeset
835 ((top . left) (bottom . right))
09cc3d0d41ce (menu-bar-showhide-fringe-ind-menu) [customize]: Add radio button.
Andreas Schwab <schwab@suse.de>
parents: 93154
diff changeset
836 ((t . right) (top . left))))))))
58598
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
837
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
838 (defun menu-bar-showhide-fringe-ind-mixed ()
64760
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
839 "Display top and bottom indicators in opposite fringes, arrows in right."
58598
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
840 (interactive)
64760
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
841 (customize-set-variable 'indicate-buffer-boundaries
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
842 '((t . right) (top . left))))
58598
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
843
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
844 (define-key menu-bar-showhide-fringe-ind-menu [mixed]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
845 `(menu-item ,(purecopy "Opposite, Arrows Right") menu-bar-showhide-fringe-ind-mixed
64760
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
846 :help
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
847 ,(purecopy "Show top/bottom indicators in opposite fringes, arrows in right")
58598
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
848 :visible (display-graphic-p)
93154
3891784e87be (menu-bar-showhide-fringe-ind-menu): Fix radio
Andreas Schwab <schwab@suse.de>
parents: 93010
diff changeset
849 :button (:radio . (equal indicate-buffer-boundaries
3891784e87be (menu-bar-showhide-fringe-ind-menu): Fix radio
Andreas Schwab <schwab@suse.de>
parents: 93010
diff changeset
850 '((t . right) (top . left))))))
58598
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
851
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
852 (defun menu-bar-showhide-fringe-ind-box ()
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
853 "Display top and bottom indicators in opposite fringes."
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
854 (interactive)
64760
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
855 (customize-set-variable 'indicate-buffer-boundaries
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
856 '((top . left) (bottom . right))))
58598
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
857
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
858 (define-key menu-bar-showhide-fringe-ind-menu [box]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
859 `(menu-item ,(purecopy "Opposite, No Arrows") menu-bar-showhide-fringe-ind-box
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
860 :help ,(purecopy "Show top/bottom indicators in opposite fringes, no arrows")
58598
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
861 :visible (display-graphic-p)
93154
3891784e87be (menu-bar-showhide-fringe-ind-menu): Fix radio
Andreas Schwab <schwab@suse.de>
parents: 93010
diff changeset
862 :button (:radio . (equal indicate-buffer-boundaries
3891784e87be (menu-bar-showhide-fringe-ind-menu): Fix radio
Andreas Schwab <schwab@suse.de>
parents: 93010
diff changeset
863 '((top . left) (bottom . right))))))
58598
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
864
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
865 (defun menu-bar-showhide-fringe-ind-right ()
64760
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
866 "Display buffer boundaries and arrows in the right fringe."
58598
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
867 (interactive)
64760
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
868 (customize-set-variable 'indicate-buffer-boundaries 'right))
58598
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
869
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
870 (define-key menu-bar-showhide-fringe-ind-menu [right]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
871 `(menu-item ,(purecopy "In Right Fringe") menu-bar-showhide-fringe-ind-right
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
872 :help ,(purecopy "Show buffer boundaries and arrows in right fringe")
58598
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
873 :visible (display-graphic-p)
64760
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
874 :button (:radio . (eq indicate-buffer-boundaries 'right))))
58598
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
875
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
876 (defun menu-bar-showhide-fringe-ind-left ()
64760
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
877 "Display buffer boundaries and arrows in the left fringe."
58598
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
878 (interactive)
64760
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
879 (customize-set-variable 'indicate-buffer-boundaries 'left))
58598
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
880
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
881 (define-key menu-bar-showhide-fringe-ind-menu [left]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
882 `(menu-item ,(purecopy "In Left Fringe") menu-bar-showhide-fringe-ind-left
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
883 :help ,(purecopy "Show buffer boundaries and arrows in left fringe")
58598
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
884 :visible (display-graphic-p)
64760
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
885 :button (:radio . (eq indicate-buffer-boundaries 'left))))
58598
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
886
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
887 (defun menu-bar-showhide-fringe-ind-none ()
64760
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
888 "Do not display any buffer boundary indicators."
58598
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
889 (interactive)
64760
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
890 (customize-set-variable 'indicate-buffer-boundaries nil))
58598
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
891
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
892 (define-key menu-bar-showhide-fringe-ind-menu [none]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
893 `(menu-item ,(purecopy "No Indicators") menu-bar-showhide-fringe-ind-none
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
894 :help ,(purecopy "Hide all buffer boundary indicators and arrows")
58598
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
895 :visible (display-graphic-p)
64760
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
896 :button (:radio . (eq indicate-buffer-boundaries nil))))
58598
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
897
64760
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
898 (define-key menu-bar-showhide-fringe-menu [showhide-fringe-ind]
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
899 `(menu-item ,(purecopy "Buffer Boundaries") ,menu-bar-showhide-fringe-ind-menu
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
900 :visible (display-graphic-p)
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
901 :help ,(purecopy "Indicate buffer boundaries in fringe")))
58598
e988bd99edf9 (menu-bar-options-save): Add fringe-indicators.
Kim F. Storm <storm@cua.dk>
parents: 58586
diff changeset
902
64760
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
903 (define-key menu-bar-showhide-fringe-menu [indicate-empty-lines]
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
904 (menu-bar-make-toggle toggle-indicate-empty-lines indicate-empty-lines
64925
2aaaa5e2d539 (menu-bar-options-menu): Standardize capitalization of menu items.
Luc Teirlinck <teirllm@auburn.edu>
parents: 64904
diff changeset
905 "Empty Line Indicators"
64760
4f6b04b42ad4 (menu-bar-options-save): Replace `fringe-indicators'
Luc Teirlinck <teirllm@auburn.edu>
parents: 64091
diff changeset
906 "Indicating of empty lines %s"
74383
091b7540d54d (menu-bar-make-toggle): Add "globally" to echo area messages.
Richard M. Stallman <rms@gnu.org>
parents: 74362
diff changeset
907 "Indicate trailing empty lines in fringe, globally"))
45492
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
908
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
909 (defun menu-bar-showhide-fringe-menu-customize ()
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
910 "Show customization buffer for `fringe-mode'."
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
911 (interactive)
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
912 (customize-variable 'fringe-mode))
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
913
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
914 (define-key menu-bar-showhide-fringe-menu [customize]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
915 `(menu-item ,(purecopy "Customize Fringe") menu-bar-showhide-fringe-menu-customize
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
916 :help ,(purecopy "Detailed customization of fringe")
45492
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
917 :visible (display-graphic-p)))
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
918
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
919 (defun menu-bar-showhide-fringe-menu-customize-reset ()
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
920 "Reset the fringe mode: display fringes on both sides of a window."
45492
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
921 (interactive)
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
922 (customize-set-variable 'fringe-mode nil))
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
923
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
924 (define-key menu-bar-showhide-fringe-menu [default]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
925 `(menu-item ,(purecopy "Default") menu-bar-showhide-fringe-menu-customize-reset
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
926 :help ,(purecopy "Default width fringe on both left and right side")
45492
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
927 :visible (display-graphic-p)
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
928 :button (:radio . (eq fringe-mode nil))))
45492
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
929
67550
7c0bd57ed595 * menu-bar.el (menu-bar-showhide-fringe-menu): Moved "On the Right"
Jan Djärv <jan.h.d@swipnet.se>
parents: 67430
diff changeset
930 (defun menu-bar-showhide-fringe-menu-customize-right ()
7c0bd57ed595 * menu-bar.el (menu-bar-showhide-fringe-menu): Moved "On the Right"
Jan Djärv <jan.h.d@swipnet.se>
parents: 67430
diff changeset
931 "Display fringes only on the right of each window."
7c0bd57ed595 * menu-bar.el (menu-bar-showhide-fringe-menu): Moved "On the Right"
Jan Djärv <jan.h.d@swipnet.se>
parents: 67430
diff changeset
932 (interactive)
7c0bd57ed595 * menu-bar.el (menu-bar-showhide-fringe-menu): Moved "On the Right"
Jan Djärv <jan.h.d@swipnet.se>
parents: 67430
diff changeset
933 (require 'fringe)
7c0bd57ed595 * menu-bar.el (menu-bar-showhide-fringe-menu): Moved "On the Right"
Jan Djärv <jan.h.d@swipnet.se>
parents: 67430
diff changeset
934 (customize-set-variable 'fringe-mode '(0 . nil)))
7c0bd57ed595 * menu-bar.el (menu-bar-showhide-fringe-menu): Moved "On the Right"
Jan Djärv <jan.h.d@swipnet.se>
parents: 67430
diff changeset
935
7c0bd57ed595 * menu-bar.el (menu-bar-showhide-fringe-menu): Moved "On the Right"
Jan Djärv <jan.h.d@swipnet.se>
parents: 67430
diff changeset
936 (define-key menu-bar-showhide-fringe-menu [right]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
937 `(menu-item ,(purecopy "On the Right") menu-bar-showhide-fringe-menu-customize-right
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
938 :help ,(purecopy "Fringe only on the right side")
67550
7c0bd57ed595 * menu-bar.el (menu-bar-showhide-fringe-menu): Moved "On the Right"
Jan Djärv <jan.h.d@swipnet.se>
parents: 67430
diff changeset
939 :visible (display-graphic-p)
7c0bd57ed595 * menu-bar.el (menu-bar-showhide-fringe-menu): Moved "On the Right"
Jan Djärv <jan.h.d@swipnet.se>
parents: 67430
diff changeset
940 :button (:radio . (equal fringe-mode '(0 . nil)))))
7c0bd57ed595 * menu-bar.el (menu-bar-showhide-fringe-menu): Moved "On the Right"
Jan Djärv <jan.h.d@swipnet.se>
parents: 67430
diff changeset
941
45492
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
942 (defun menu-bar-showhide-fringe-menu-customize-left ()
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
943 "Display fringes only on the left of each window."
45492
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
944 (interactive)
45505
59015bfc2305 (menu-bar-showhide-fringe-menu-customize-left)
Miles Bader <miles@gnu.org>
parents: 45492
diff changeset
945 (require 'fringe)
59015bfc2305 (menu-bar-showhide-fringe-menu-customize-left)
Miles Bader <miles@gnu.org>
parents: 45492
diff changeset
946 (customize-set-variable 'fringe-mode '(nil . 0)))
45492
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
947
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
948 (define-key menu-bar-showhide-fringe-menu [left]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
949 `(menu-item ,(purecopy "On the Left") menu-bar-showhide-fringe-menu-customize-left
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
950 :help ,(purecopy "Fringe only on the left side")
45492
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
951 :visible (display-graphic-p)
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
952 :button (:radio . (equal fringe-mode '(nil . 0)))))
45492
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
953
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
954 (defun menu-bar-showhide-fringe-menu-customize-disable ()
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
955 "Do not display window fringes."
45492
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
956 (interactive)
45505
59015bfc2305 (menu-bar-showhide-fringe-menu-customize-left)
Miles Bader <miles@gnu.org>
parents: 45492
diff changeset
957 (require 'fringe)
59015bfc2305 (menu-bar-showhide-fringe-menu-customize-left)
Miles Bader <miles@gnu.org>
parents: 45492
diff changeset
958 (customize-set-variable 'fringe-mode 0))
45492
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
959
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
960 (define-key menu-bar-showhide-fringe-menu [none]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
961 `(menu-item ,(purecopy "None") menu-bar-showhide-fringe-menu-customize-disable
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
962 :help ,(purecopy "Turn off fringe")
45492
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
963 :visible (display-graphic-p)
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
964 :button (:radio . (eq fringe-mode 0))))
45492
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
965
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
966 (define-key menu-bar-showhide-menu [showhide-fringe]
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
967 `(menu-item ,(purecopy "Fringe") ,menu-bar-showhide-fringe-menu
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
968 :visible (display-graphic-p)))
45492
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
969
43020
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
970 (defvar menu-bar-showhide-scroll-bar-menu (make-sparse-keymap "Scroll-bar"))
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
971
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
972 (define-key menu-bar-showhide-scroll-bar-menu [right]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
973 `(menu-item ,(purecopy "On the Right")
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
974 menu-bar-right-scroll-bar
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
975 :help ,(purecopy "Scroll-bar on the right side")
45228
66644e336dd7 (menu-bar-showhide-scroll-bar-menu)
Eli Zaretskii <eliz@gnu.org>
parents: 45073
diff changeset
976 :visible (display-graphic-p)
43246
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
977 :button (:radio . (eq (cdr (assq 'vertical-scroll-bars
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
978 (frame-parameters))) 'right))))
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
979 (defun menu-bar-right-scroll-bar ()
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
980 "Display scroll bars on the right of each window."
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
981 (interactive)
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
982 (customize-set-variable 'scroll-bar-mode 'right))
43020
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
983
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
984 (define-key menu-bar-showhide-scroll-bar-menu [left]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
985 `(menu-item ,(purecopy "On the Left")
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
986 menu-bar-left-scroll-bar
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
987 :help ,(purecopy "Scroll-bar on the left side")
45228
66644e336dd7 (menu-bar-showhide-scroll-bar-menu)
Eli Zaretskii <eliz@gnu.org>
parents: 45073
diff changeset
988 :visible (display-graphic-p)
43246
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
989 :button (:radio . (eq (cdr (assq 'vertical-scroll-bars
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
990 (frame-parameters))) 'left))))
43020
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
991
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
992 (defun menu-bar-left-scroll-bar ()
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
993 "Display scroll bars on the left of each window."
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
994 (interactive)
49012
5f0cc4c0a0c7 (menu-bar-left-scroll-bar): Set `scroll-bar-mode'
John Paul Wallington <jpw@pobox.com>
parents: 48524
diff changeset
995 (customize-set-variable 'scroll-bar-mode 'left))
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
996
43020
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
997 (define-key menu-bar-showhide-scroll-bar-menu [none]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
998 `(menu-item ,(purecopy "None")
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
999 menu-bar-no-scroll-bar
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1000 :help ,(purecopy "Turn off scroll-bar")
45228
66644e336dd7 (menu-bar-showhide-scroll-bar-menu)
Eli Zaretskii <eliz@gnu.org>
parents: 45073
diff changeset
1001 :visible (display-graphic-p)
43246
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
1002 :button (:radio . (eq (cdr (assq 'vertical-scroll-bars
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
1003 (frame-parameters))) nil))))
43020
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
1004
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1005 (defun menu-bar-no-scroll-bar ()
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1006 "Turn off scroll bars."
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1007 (interactive)
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1008 (customize-set-variable 'scroll-bar-mode nil))
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1009
43020
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
1010 (define-key menu-bar-showhide-menu [showhide-scroll-bar]
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
1011 `(menu-item ,(purecopy "Scroll-bar") ,menu-bar-showhide-scroll-bar-menu
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
1012 :visible (display-graphic-p)))
43020
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
1013
61710
7653208ec8d8 (menu-bar-options-save, menu-bar-showhide-menu):
Nick Roberts <nickrob@snap.net.nz>
parents: 61024
diff changeset
1014 (define-key menu-bar-showhide-menu [showhide-tooltip-mode]
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
1015 `(menu-item ,(purecopy "Tooltips") tooltip-mode
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
1016 :help ,(purecopy "Turn tooltips on/off")
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
1017 :visible (and (display-graphic-p) (fboundp 'x-show-tip))
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
1018 :button (:toggle . tooltip-mode)))
61710
7653208ec8d8 (menu-bar-options-save, menu-bar-showhide-menu):
Nick Roberts <nickrob@snap.net.nz>
parents: 61024
diff changeset
1019
111929
c8a80ac35b9a Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111253
diff changeset
1020 (defun menu-bar-frame-for-menubar ()
c8a80ac35b9a Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111253
diff changeset
1021 "Return the frame suitable for updating the menu bar."
c8a80ac35b9a Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111253
diff changeset
1022 (or (and (framep menu-updating-frame)
c8a80ac35b9a Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111253
diff changeset
1023 menu-updating-frame)
c8a80ac35b9a Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111253
diff changeset
1024 (selected-frame)))
c8a80ac35b9a Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111253
diff changeset
1025
c8a80ac35b9a Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111253
diff changeset
1026 (defun menu-bar-positive-p (val)
c8a80ac35b9a Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111253
diff changeset
1027 "Return non-nil iff VAL is a positive number."
c8a80ac35b9a Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111253
diff changeset
1028 (and (numberp val)
c8a80ac35b9a Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111253
diff changeset
1029 (> val 0)))
c8a80ac35b9a Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111253
diff changeset
1030
47296
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1031 (define-key menu-bar-showhide-menu [menu-bar-mode]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1032 `(menu-item ,(purecopy "Menu-bar") toggle-menu-bar-mode-from-frame
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1033 :help ,(purecopy "Turn menu-bar on/off")
111929
c8a80ac35b9a Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111253
diff changeset
1034 :button
c8a80ac35b9a Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111253
diff changeset
1035 (:toggle . (menu-bar-positive-p
c8a80ac35b9a Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111253
diff changeset
1036 (frame-parameter (menu-bar-frame-for-menubar)
c8a80ac35b9a Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111253
diff changeset
1037 'menu-bar-lines)))))
43020
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
1038
109771
3c2274d0da65 Fix handling of tool-bar-position, also put into default-frame-alist.
Jan D <jan.h.d@swipnet.se>
parents: 109581
diff changeset
1039 (defun menu-bar-set-tool-bar-position (position)
3c2274d0da65 Fix handling of tool-bar-position, also put into default-frame-alist.
Jan D <jan.h.d@swipnet.se>
parents: 109581
diff changeset
1040 (customize-set-variable 'tool-bar-mode t)
110456
8d106071e2c8 Use tool-bar-position in menu Options/Show.
Jan D. <jan.h.d@swipnet.se>
parents: 110357
diff changeset
1041 (customize-set-variable 'tool-bar-position position))
109581
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1042 (defun menu-bar-showhide-tool-bar-menu-customize-disable ()
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1043 "Do not display tool bars."
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1044 (interactive)
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1045 (customize-set-variable 'tool-bar-mode nil))
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1046 (defun menu-bar-showhide-tool-bar-menu-customize-enable-left ()
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1047 "Display tool bars on the left side."
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1048 (interactive)
109771
3c2274d0da65 Fix handling of tool-bar-position, also put into default-frame-alist.
Jan D <jan.h.d@swipnet.se>
parents: 109581
diff changeset
1049 (menu-bar-set-tool-bar-position 'left))
109581
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1050 (defun menu-bar-showhide-tool-bar-menu-customize-enable-right ()
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1051 "Display tool bars on the right side."
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1052 (interactive)
109771
3c2274d0da65 Fix handling of tool-bar-position, also put into default-frame-alist.
Jan D <jan.h.d@swipnet.se>
parents: 109581
diff changeset
1053 (menu-bar-set-tool-bar-position 'right))
109581
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1054 (defun menu-bar-showhide-tool-bar-menu-customize-enable-top ()
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1055 "Display tool bars on the top side."
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1056 (interactive)
109771
3c2274d0da65 Fix handling of tool-bar-position, also put into default-frame-alist.
Jan D <jan.h.d@swipnet.se>
parents: 109581
diff changeset
1057 (menu-bar-set-tool-bar-position 'top))
109581
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1058 (defun menu-bar-showhide-tool-bar-menu-customize-enable-bottom ()
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1059 "Display tool bars on the bottom side."
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1060 (interactive)
109771
3c2274d0da65 Fix handling of tool-bar-position, also put into default-frame-alist.
Jan D <jan.h.d@swipnet.se>
parents: 109581
diff changeset
1061 (menu-bar-set-tool-bar-position 'bottom))
109581
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1062
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1063 (if (featurep 'move-toolbar)
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1064 (progn
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1065 (defvar menu-bar-showhide-tool-bar-menu (make-sparse-keymap "Tool-bar"))
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1066
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1067 (define-key menu-bar-showhide-tool-bar-menu [showhide-tool-bar-left]
111215
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
1068 `(menu-item ,(purecopy "On the left")
109581
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1069 menu-bar-showhide-tool-bar-menu-customize-enable-left
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1070 :help ,(purecopy "Tool-bar at the left side")
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1071 :visible (display-graphic-p)
111215
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
1072 :button
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
1073 (:radio . (and tool-bar-mode
111861
869f03cdb254 Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111262
diff changeset
1074 (eq (frame-parameter
869f03cdb254 Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111262
diff changeset
1075 (menu-bar-frame-for-menubar)
869f03cdb254 Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111262
diff changeset
1076 'tool-bar-position)
109581
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1077 'left)))))
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1078
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1079 (define-key menu-bar-showhide-tool-bar-menu [showhide-tool-bar-right]
111215
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
1080 `(menu-item ,(purecopy "On the right")
109581
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1081 menu-bar-showhide-tool-bar-menu-customize-enable-right
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1082 :help ,(purecopy "Tool-bar at the right side")
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1083 :visible (display-graphic-p)
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1084 :button
111215
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
1085 (:radio . (and tool-bar-mode
111861
869f03cdb254 Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111262
diff changeset
1086 (eq (frame-parameter
869f03cdb254 Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111262
diff changeset
1087 (menu-bar-frame-for-menubar)
869f03cdb254 Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111262
diff changeset
1088 'tool-bar-position)
109581
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1089 'right)))))
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1090
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1091 (define-key menu-bar-showhide-tool-bar-menu [showhide-tool-bar-bottom]
111215
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
1092 `(menu-item ,(purecopy "On the bottom")
109581
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1093 menu-bar-showhide-tool-bar-menu-customize-enable-bottom
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1094 :help ,(purecopy "Tool-bar at the bottom")
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1095 :visible (display-graphic-p)
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1096 :button
111215
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
1097 (:radio . (and tool-bar-mode
111861
869f03cdb254 Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111262
diff changeset
1098 (eq (frame-parameter
869f03cdb254 Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111262
diff changeset
1099 (menu-bar-frame-for-menubar)
869f03cdb254 Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111262
diff changeset
1100 'tool-bar-position)
109581
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1101 'bottom)))))
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1102
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1103 (define-key menu-bar-showhide-tool-bar-menu [showhide-tool-bar-top]
111215
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
1104 `(menu-item ,(purecopy "On the top")
109581
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1105 menu-bar-showhide-tool-bar-menu-customize-enable-top
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1106 :help ,(purecopy "Tool-bar at the top")
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1107 :visible (display-graphic-p)
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1108 :button
111215
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
1109 (:radio . (and tool-bar-mode
111861
869f03cdb254 Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111262
diff changeset
1110 (eq (frame-parameter
869f03cdb254 Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111262
diff changeset
1111 (menu-bar-frame-for-menubar)
869f03cdb254 Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111262
diff changeset
1112 'tool-bar-position)
109581
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1113 'top)))))
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1114
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1115 (define-key menu-bar-showhide-tool-bar-menu [showhide-tool-bar-none]
111215
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
1116 `(menu-item ,(purecopy "None")
109581
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1117 menu-bar-showhide-tool-bar-menu-customize-disable
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1118 :help ,(purecopy "Turn tool-bar off")
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1119 :visible (display-graphic-p)
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1120 :button (:radio . (eq tool-bar-mode nil))))
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1121
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1122 (define-key menu-bar-showhide-menu [showhide-tool-bar]
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1123 `(menu-item ,(purecopy "Tool-bar") ,menu-bar-showhide-tool-bar-menu
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1124 :visible (display-graphic-p)))
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1125
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1126 )
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1127 ;; else not tool bar that can move.
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1128 (define-key menu-bar-showhide-menu [showhide-tool-bar]
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1129 `(menu-item ,(purecopy "Tool-bar") toggle-tool-bar-mode-from-frame
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1130 :help ,(purecopy "Turn tool-bar on/off")
06384b3caebf Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents: 109398
diff changeset
1131 :visible (display-graphic-p)
111861
869f03cdb254 Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111262
diff changeset
1132 :button
869f03cdb254 Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111262
diff changeset
1133 (:toggle . (menu-bar-positive-p
869f03cdb254 Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111262
diff changeset
1134 (frame-parameter (menu-bar-frame-for-menubar)
869f03cdb254 Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111262
diff changeset
1135 'tool-bar-lines))))))
43020
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
1136
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
1137 (define-key menu-bar-options-menu [showhide]
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
1138 `(menu-item ,(purecopy "Show/Hide") ,menu-bar-showhide-menu))
43020
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
1139
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
1140 (define-key menu-bar-options-menu [showhide-separator]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
1141 menu-bar-separator)
43020
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
1142
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1143 (define-key menu-bar-options-menu [mule]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1144 ;; It is better not to use backquote here,
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1145 ;; because that makes a bootstrapping problem
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1146 ;; if you need to recompile all the Lisp files using interpreted code.
112198
0c7ac8e7d5ee * cus-theme.el (customize-themes): Use switch-to-buffer.
Chong Yidong <cyd@stupidchicken.com>
parents: 112002
diff changeset
1147 `(menu-item ,(purecopy "Multilingual Environment") ,mule-menu-keymap
28557
6f1d9b65d1f8 (menu-bar-options-menu): Make `mule' always visible.
Dave Love <fx@gnu.org>
parents: 28258
diff changeset
1148 ;; Most of the MULE menu actually does make sense in unibyte mode,
6f1d9b65d1f8 (menu-bar-options-menu): Make `mule' always visible.
Dave Love <fx@gnu.org>
parents: 28258
diff changeset
1149 ;; e.g. language selection.
104823
68150c643e2e Use default-value rather than default-enable-multibyte-characters.
Glenn Morris <rgm@gnu.org>
parents: 102399
diff changeset
1150 ;;; :visible '(default-value 'enable-multibyte-characters)
70882
c5d2bd581ee7 * menu-bar.el, international/mule-cmds.el: Remove tooltips for
Chong Yidong <cyd@stupidchicken.com>
parents: 70793
diff changeset
1151 ))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1152 ;(setq menu-bar-final-items (cons 'mule menu-bar-final-items))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1153 ;(define-key menu-bar-options-menu [preferences]
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
1154 ; `(menu-item ,(purecopy "Preferences") ,menu-bar-preferences-menu
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
1155 ; :help ,(purecopy "Toggle important global options")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1156
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1157 (define-key menu-bar-options-menu [mule-separator]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
1158 menu-bar-separator)
19617
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
1159
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
1160 (define-key menu-bar-options-menu [debug-on-quit]
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
1161 (menu-bar-make-toggle toggle-debug-on-quit debug-on-quit
38155
29c8619f91d0 (menu-bar-make-toggle): Construct the
Richard M. Stallman <rms@gnu.org>
parents: 38146
diff changeset
1162 "Enter Debugger on Quit/C-g" "Debug on Quit %s"
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1163 "Enter Lisp debugger when C-g is pressed"))
19617
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
1164 (define-key menu-bar-options-menu [debug-on-error]
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
1165 (menu-bar-make-toggle toggle-debug-on-error debug-on-error
38155
29c8619f91d0 (menu-bar-make-toggle): Construct the
Richard M. Stallman <rms@gnu.org>
parents: 38146
diff changeset
1166 "Enter Debugger on Error" "Debug on Error %s"
29c8619f91d0 (menu-bar-make-toggle): Construct the
Richard M. Stallman <rms@gnu.org>
parents: 38146
diff changeset
1167 "Enter Lisp debugger when an error is signaled"))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1168 (define-key menu-bar-options-menu [debugger-separator]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
1169 menu-bar-separator)
60392
b1d7c58b4f4b (menu-bar-make-mm-toggle): Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents: 60099
diff changeset
1170
b1d7c58b4f4b (menu-bar-make-mm-toggle): Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents: 60099
diff changeset
1171 (define-key menu-bar-options-menu [blink-cursor-mode]
b1d7c58b4f4b (menu-bar-make-mm-toggle): Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents: 60099
diff changeset
1172 (menu-bar-make-mm-toggle blink-cursor-mode
b1d7c58b4f4b (menu-bar-make-mm-toggle): Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents: 60099
diff changeset
1173 "Blinking Cursor"
b1d7c58b4f4b (menu-bar-make-mm-toggle): Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents: 60099
diff changeset
1174 "Whether the cursor blinks (Blink Cursor mode)"))
b1d7c58b4f4b (menu-bar-make-mm-toggle): Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents: 60099
diff changeset
1175 (define-key menu-bar-options-menu [cursor-separator]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
1176 menu-bar-separator)
60392
b1d7c58b4f4b (menu-bar-make-mm-toggle): Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents: 60099
diff changeset
1177
19617
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
1178 (define-key menu-bar-options-menu [save-place]
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
1179 (menu-bar-make-toggle toggle-save-place-globally save-place
21302
77a4a1ce8d26 (menu-bar-options-menu): Remove "Toggle" from item
Richard M. Stallman <rms@gnu.org>
parents: 20762
diff changeset
1180 "Save Place in Files between Sessions"
19617
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
1181 "Saving place in files %s"
52178
b5ad3c78162a * menu-bar.el (menu-bar-options-menu): Supply a body for the
Karl Fogel <kfogel@red-bean.com>
parents: 52043
diff changeset
1182 "Visit files of previous session when restarting Emacs"
b5ad3c78162a * menu-bar.el (menu-bar-options-menu): Supply a body for the
Karl Fogel <kfogel@red-bean.com>
parents: 52043
diff changeset
1183 (require 'saveplace)
b5ad3c78162a * menu-bar.el (menu-bar-options-menu): Supply a body for the
Karl Fogel <kfogel@red-bean.com>
parents: 52043
diff changeset
1184 ;; Do it by name, to avoid a free-variable
b5ad3c78162a * menu-bar.el (menu-bar-options-menu): Supply a body for the
Karl Fogel <kfogel@red-bean.com>
parents: 52043
diff changeset
1185 ;; warning during byte compilation.
b5ad3c78162a * menu-bar.el (menu-bar-options-menu): Supply a body for the
Karl Fogel <kfogel@red-bean.com>
parents: 52043
diff changeset
1186 (set-default
b5ad3c78162a * menu-bar.el (menu-bar-options-menu): Supply a body for the
Karl Fogel <kfogel@red-bean.com>
parents: 52043
diff changeset
1187 'save-place (not (symbol-value 'save-place)))))
43246
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
1188
19617
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
1189 (define-key menu-bar-options-menu [uniquify]
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
1190 (menu-bar-make-toggle toggle-uniquify-buffer-names uniquify-buffer-name-style
21302
77a4a1ce8d26 (menu-bar-options-menu): Remove "Toggle" from item
Richard M. Stallman <rms@gnu.org>
parents: 20762
diff changeset
1191 "Use Directory Names in Buffer Names"
19617
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
1192 "Directory name in buffer names (uniquify) %s"
38155
29c8619f91d0 (menu-bar-make-toggle): Construct the
Richard M. Stallman <rms@gnu.org>
parents: 38146
diff changeset
1193 "Uniquify buffer names by adding parent directory names"
19617
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
1194 (require 'uniquify)
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
1195 (setq uniquify-buffer-name-style
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
1196 (if (not uniquify-buffer-name-style)
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
1197 'forward))))
43246
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
1198
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1199 (define-key menu-bar-options-menu [edit-options-separator]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
1200 menu-bar-separator)
45073
c7b6259de115 (menu-bar-make-toggle): Added optional PROPS arg.
Kim F. Storm <storm@cua.dk>
parents: 45044
diff changeset
1201 (define-key menu-bar-options-menu [cua-mode]
50970
7831ca508f35 (menu-bar-options-menu) <cua-mode>: Use menu-bar-make-mm-toggle.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 49997
diff changeset
1202 (menu-bar-make-mm-toggle cua-mode
64925
2aaaa5e2d539 (menu-bar-options-menu): Standardize capitalization of menu items.
Luc Teirlinck <teirllm@auburn.edu>
parents: 64904
diff changeset
1203 "C-x/C-c/C-v Cut and Paste (CUA)"
66625
a6851dd5148b (menu-bar-options-menu): Show "Shift Movement (CUA)"
Kim F. Storm <storm@cua.dk>
parents: 66444
diff changeset
1204 "Use C-z/C-x/C-c/C-v keys for undo/cut/copy/paste"
105845
20a7667a5619 (menu-bar-make-mm-toggle): Quote each element of `props'.
Juri Linkov <juri@jurta.org>
parents: 105835
diff changeset
1205 (:visible (or (not (boundp 'cua-enable-cua-keys))
20a7667a5619 (menu-bar-make-mm-toggle): Quote each element of `props'.
Juri Linkov <juri@jurta.org>
parents: 105835
diff changeset
1206 cua-enable-cua-keys))))
66625
a6851dd5148b (menu-bar-options-menu): Show "Shift Movement (CUA)"
Kim F. Storm <storm@cua.dk>
parents: 66444
diff changeset
1207
a6851dd5148b (menu-bar-options-menu): Show "Shift Movement (CUA)"
Kim F. Storm <storm@cua.dk>
parents: 66444
diff changeset
1208 (define-key menu-bar-options-menu [cua-emulation-mode]
a6851dd5148b (menu-bar-options-menu): Show "Shift Movement (CUA)"
Kim F. Storm <storm@cua.dk>
parents: 66444
diff changeset
1209 (menu-bar-make-mm-toggle cua-mode
a6851dd5148b (menu-bar-options-menu): Show "Shift Movement (CUA)"
Kim F. Storm <storm@cua.dk>
parents: 66444
diff changeset
1210 "Shift movement mark region (CUA)"
109017
1bf6e768d93b menu-bar.el (menu-bar-options-menu): Fix typo in menu entry.
Juanma Barranquero <lekktu@gmail.com>
parents: 107295
diff changeset
1211 "Use shifted movement keys to set and extend the region"
105845
20a7667a5619 (menu-bar-make-mm-toggle): Quote each element of `props'.
Juri Linkov <juri@jurta.org>
parents: 105835
diff changeset
1212 (:visible (and (boundp 'cua-enable-cua-keys)
20a7667a5619 (menu-bar-make-mm-toggle): Quote each element of `props'.
Juri Linkov <juri@jurta.org>
parents: 105835
diff changeset
1213 (not cua-enable-cua-keys)))))
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1214
22207
51847ba069f8 (toggle-case-fold-search): New command.
Richard M. Stallman <rms@gnu.org>
parents: 21912
diff changeset
1215 (define-key menu-bar-options-menu [case-fold-search]
51847ba069f8 (toggle-case-fold-search): New command.
Richard M. Stallman <rms@gnu.org>
parents: 21912
diff changeset
1216 (menu-bar-make-toggle toggle-case-fold-search case-fold-search
74362
8b12ae69293f (toggle-case-fold-search): Clarify doc/help string and
Nick Roberts <nickrob@snap.net.nz>
parents: 74236
diff changeset
1217 "Case-Insensitive Search"
74383
091b7540d54d (menu-bar-make-toggle): Add "globally" to echo area messages.
Richard M. Stallman <rms@gnu.org>
parents: 74362
diff changeset
1218 "Case-Insensitive Search %s"
95609
31c3df6cae52 (menu-bar-options-menu): Add Menu entry for longlines mode.
Chong Yidong <cyd@stupidchicken.com>
parents: 95059
diff changeset
1219 "Ignore letter-case in search commands"))
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1220
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1221 (defun menu-bar-text-mode-auto-fill ()
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1222 (interactive)
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1223 (toggle-text-mode-auto-fill)
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1224 ;; This is somewhat questionable, as `text-mode-hook'
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1225 ;; might have changed outside customize.
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1226 ;; -- Per Abrahamsen <abraham@dina.kvl.dk> 2002-02-11.
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1227 (customize-mark-as-set 'text-mode-hook))
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1228
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1229 (define-key menu-bar-options-menu [auto-fill-mode]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1230 `(menu-item ,(purecopy "Auto Fill in Text Modes")
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1231 menu-bar-text-mode-auto-fill
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1232 :help ,(purecopy "Automatically fill text while typing (Auto Fill mode)")
43993
f71c489afb5a (menu-bar-options-menu): Cope if text-mode-hook is not a list.
Richard M. Stallman <rms@gnu.org>
parents: 43412
diff changeset
1233 :button (:toggle . (if (listp text-mode-hook)
f71c489afb5a (menu-bar-options-menu): Cope if text-mode-hook is not a list.
Richard M. Stallman <rms@gnu.org>
parents: 43412
diff changeset
1234 (member 'turn-on-auto-fill text-mode-hook)
f71c489afb5a (menu-bar-options-menu): Cope if text-mode-hook is not a list.
Richard M. Stallman <rms@gnu.org>
parents: 43412
diff changeset
1235 (eq 'turn-on-auto-fill text-mode-hook)))))
95609
31c3df6cae52 (menu-bar-options-menu): Add Menu entry for longlines mode.
Chong Yidong <cyd@stupidchicken.com>
parents: 95059
diff changeset
1236
96587
9e942cda4453 Remove Longlines mode from menu. Add word-wrap option.
Chong Yidong <cyd@stupidchicken.com>
parents: 95871
diff changeset
1237
9e942cda4453 Remove Longlines mode from menu. Add word-wrap option.
Chong Yidong <cyd@stupidchicken.com>
parents: 95871
diff changeset
1238 (defvar menu-bar-line-wrapping-menu (make-sparse-keymap "Line Wrapping"))
9e942cda4453 Remove Longlines mode from menu. Add word-wrap option.
Chong Yidong <cyd@stupidchicken.com>
parents: 95871
diff changeset
1239
96875
771bcc6d1c99 (menu-bar-line-wrapping-menu): Use Visual Line mode for "word wrap"
Chong Yidong <cyd@stupidchicken.com>
parents: 96587
diff changeset
1240 (define-key menu-bar-line-wrapping-menu [word-wrap]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1241 `(menu-item ,(purecopy "Word Wrap (Visual Line mode)")
96875
771bcc6d1c99 (menu-bar-line-wrapping-menu): Use Visual Line mode for "word wrap"
Chong Yidong <cyd@stupidchicken.com>
parents: 96587
diff changeset
1242 (lambda ()
771bcc6d1c99 (menu-bar-line-wrapping-menu): Use Visual Line mode for "word wrap"
Chong Yidong <cyd@stupidchicken.com>
parents: 96587
diff changeset
1243 (interactive)
771bcc6d1c99 (menu-bar-line-wrapping-menu): Use Visual Line mode for "word wrap"
Chong Yidong <cyd@stupidchicken.com>
parents: 96587
diff changeset
1244 (unless visual-line-mode
771bcc6d1c99 (menu-bar-line-wrapping-menu): Use Visual Line mode for "word wrap"
Chong Yidong <cyd@stupidchicken.com>
parents: 96587
diff changeset
1245 (visual-line-mode 1))
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
1246 (message ,(purecopy "Visual-Line mode enabled")))
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1247 :help ,(purecopy "Wrap long lines at word boundaries")
96875
771bcc6d1c99 (menu-bar-line-wrapping-menu): Use Visual Line mode for "word wrap"
Chong Yidong <cyd@stupidchicken.com>
parents: 96587
diff changeset
1248 :button (:radio . (and (null truncate-lines)
771bcc6d1c99 (menu-bar-line-wrapping-menu): Use Visual Line mode for "word wrap"
Chong Yidong <cyd@stupidchicken.com>
parents: 96587
diff changeset
1249 (not (truncated-partial-width-window-p))
771bcc6d1c99 (menu-bar-line-wrapping-menu): Use Visual Line mode for "word wrap"
Chong Yidong <cyd@stupidchicken.com>
parents: 96587
diff changeset
1250 word-wrap))
771bcc6d1c99 (menu-bar-line-wrapping-menu): Use Visual Line mode for "word wrap"
Chong Yidong <cyd@stupidchicken.com>
parents: 96587
diff changeset
1251 :visible (menu-bar-menu-frame-live-and-visible-p)))
771bcc6d1c99 (menu-bar-line-wrapping-menu): Use Visual Line mode for "word wrap"
Chong Yidong <cyd@stupidchicken.com>
parents: 96587
diff changeset
1252
96587
9e942cda4453 Remove Longlines mode from menu. Add word-wrap option.
Chong Yidong <cyd@stupidchicken.com>
parents: 95871
diff changeset
1253 (define-key menu-bar-line-wrapping-menu [truncate]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1254 `(menu-item ,(purecopy "Truncate Long Lines")
96875
771bcc6d1c99 (menu-bar-line-wrapping-menu): Use Visual Line mode for "word wrap"
Chong Yidong <cyd@stupidchicken.com>
parents: 96587
diff changeset
1255 (lambda ()
771bcc6d1c99 (menu-bar-line-wrapping-menu): Use Visual Line mode for "word wrap"
Chong Yidong <cyd@stupidchicken.com>
parents: 96587
diff changeset
1256 (interactive)
771bcc6d1c99 (menu-bar-line-wrapping-menu): Use Visual Line mode for "word wrap"
Chong Yidong <cyd@stupidchicken.com>
parents: 96587
diff changeset
1257 (if visual-line-mode (visual-line-mode 0))
771bcc6d1c99 (menu-bar-line-wrapping-menu): Use Visual Line mode for "word wrap"
Chong Yidong <cyd@stupidchicken.com>
parents: 96587
diff changeset
1258 (setq word-wrap nil)
771bcc6d1c99 (menu-bar-line-wrapping-menu): Use Visual Line mode for "word wrap"
Chong Yidong <cyd@stupidchicken.com>
parents: 96587
diff changeset
1259 (toggle-truncate-lines 1))
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1260 :help ,(purecopy "Truncate long lines at window edge")
96587
9e942cda4453 Remove Longlines mode from menu. Add word-wrap option.
Chong Yidong <cyd@stupidchicken.com>
parents: 95871
diff changeset
1261 :button (:radio . (or truncate-lines
9e942cda4453 Remove Longlines mode from menu. Add word-wrap option.
Chong Yidong <cyd@stupidchicken.com>
parents: 95871
diff changeset
1262 (truncated-partial-width-window-p)))
9e942cda4453 Remove Longlines mode from menu. Add word-wrap option.
Chong Yidong <cyd@stupidchicken.com>
parents: 95871
diff changeset
1263 :visible (menu-bar-menu-frame-live-and-visible-p)
9e942cda4453 Remove Longlines mode from menu. Add word-wrap option.
Chong Yidong <cyd@stupidchicken.com>
parents: 95871
diff changeset
1264 :enable (not (truncated-partial-width-window-p))))
95609
31c3df6cae52 (menu-bar-options-menu): Add Menu entry for longlines mode.
Chong Yidong <cyd@stupidchicken.com>
parents: 95059
diff changeset
1265
96587
9e942cda4453 Remove Longlines mode from menu. Add word-wrap option.
Chong Yidong <cyd@stupidchicken.com>
parents: 95871
diff changeset
1266 (define-key menu-bar-line-wrapping-menu [window-wrap]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1267 `(menu-item ,(purecopy "Wrap at Window Edge")
96875
771bcc6d1c99 (menu-bar-line-wrapping-menu): Use Visual Line mode for "word wrap"
Chong Yidong <cyd@stupidchicken.com>
parents: 96587
diff changeset
1268 (lambda () (interactive)
771bcc6d1c99 (menu-bar-line-wrapping-menu): Use Visual Line mode for "word wrap"
Chong Yidong <cyd@stupidchicken.com>
parents: 96587
diff changeset
1269 (if visual-line-mode (visual-line-mode 0))
771bcc6d1c99 (menu-bar-line-wrapping-menu): Use Visual Line mode for "word wrap"
Chong Yidong <cyd@stupidchicken.com>
parents: 96587
diff changeset
1270 (setq word-wrap nil)
771bcc6d1c99 (menu-bar-line-wrapping-menu): Use Visual Line mode for "word wrap"
Chong Yidong <cyd@stupidchicken.com>
parents: 96587
diff changeset
1271 (if truncate-lines (toggle-truncate-lines -1)))
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1272 :help ,(purecopy "Wrap long lines at window edge")
96587
9e942cda4453 Remove Longlines mode from menu. Add word-wrap option.
Chong Yidong <cyd@stupidchicken.com>
parents: 95871
diff changeset
1273 :button (:radio . (and (null truncate-lines)
9e942cda4453 Remove Longlines mode from menu. Add word-wrap option.
Chong Yidong <cyd@stupidchicken.com>
parents: 95871
diff changeset
1274 (not (truncated-partial-width-window-p))
9e942cda4453 Remove Longlines mode from menu. Add word-wrap option.
Chong Yidong <cyd@stupidchicken.com>
parents: 95871
diff changeset
1275 (not word-wrap)))
9e942cda4453 Remove Longlines mode from menu. Add word-wrap option.
Chong Yidong <cyd@stupidchicken.com>
parents: 95871
diff changeset
1276 :visible (menu-bar-menu-frame-live-and-visible-p)
9e942cda4453 Remove Longlines mode from menu. Add word-wrap option.
Chong Yidong <cyd@stupidchicken.com>
parents: 95871
diff changeset
1277 :enable (not (truncated-partial-width-window-p))))
9e942cda4453 Remove Longlines mode from menu. Add word-wrap option.
Chong Yidong <cyd@stupidchicken.com>
parents: 95871
diff changeset
1278
9e942cda4453 Remove Longlines mode from menu. Add word-wrap option.
Chong Yidong <cyd@stupidchicken.com>
parents: 95871
diff changeset
1279 (define-key menu-bar-options-menu [line-wrapping]
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
1280 `(menu-item ,(purecopy "Line Wrapping in this Buffer") ,menu-bar-line-wrapping-menu))
96587
9e942cda4453 Remove Longlines mode from menu. Add word-wrap option.
Chong Yidong <cyd@stupidchicken.com>
parents: 95871
diff changeset
1281
43254
eb6104aac6b0 2002-02-12 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43252
diff changeset
1282
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1283 (define-key menu-bar-options-menu [highlight-separator]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
1284 menu-bar-separator)
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1285 (define-key menu-bar-options-menu [highlight-paren-mode]
47296
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1286 (menu-bar-make-mm-toggle show-paren-mode
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1287 "Paren Match Highlighting"
47421
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
1288 "Highlight matching/mismatched parentheses at cursor (Show Paren mode)"))
19617
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
1289 (define-key menu-bar-options-menu [transient-mark-mode]
47421
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
1290 (menu-bar-make-mm-toggle transient-mark-mode
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
1291 "Active Region Highlighting"
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
1292 "Make text in active region stand out in color (Transient Mark mode)"
105845
20a7667a5619 (menu-bar-make-mm-toggle): Quote each element of `props'.
Juri Linkov <juri@jurta.org>
parents: 105835
diff changeset
1293 (:enable (not cua-mode))))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1294
20336
6c26b3f61e02 (menu-bar-help-menu): Reorganize into more submenus.
Richard M. Stallman <rms@gnu.org>
parents: 19793
diff changeset
1295
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1296 ;; The "Tools" menu items
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1297
32329
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
1298 (defun send-mail-item-name ()
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
1299 (let* ((known-send-mail-commands '((sendmail-user-agent . "sendmail")
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
1300 (mh-e-user-agent . "MH")
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
1301 (message-user-agent . "Gnus Message")
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
1302 (gnus-user-agent . "Gnus")))
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
1303 (name (assq mail-user-agent known-send-mail-commands)))
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
1304 (if name
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
1305 (setq name (cdr name))
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
1306 (setq name (symbol-name mail-user-agent))
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
1307 (if (string-match "\\(.+\\)-user-agent" name)
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
1308 (setq name (match-string 1 name))))
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
1309 name))
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
1310
31471
84f6fc78ec6d (read-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31461
diff changeset
1311 (defun read-mail-item-name ()
84f6fc78ec6d (read-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31461
diff changeset
1312 (let* ((known-rmail-commands '((rmail . "RMAIL")
84f6fc78ec6d (read-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31461
diff changeset
1313 (mh-rmail . "MH")
84f6fc78ec6d (read-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31461
diff changeset
1314 (gnus . "Gnus")))
84f6fc78ec6d (read-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31461
diff changeset
1315 (known (assq read-mail-command known-rmail-commands)))
84f6fc78ec6d (read-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31461
diff changeset
1316 (if known (cdr known) (symbol-name read-mail-command))))
84f6fc78ec6d (read-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31461
diff changeset
1317
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1318 (defvar menu-bar-games-menu (make-sparse-keymap "Games"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1319
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1320 (define-key menu-bar-tools-menu [games]
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
1321 `(menu-item ,(purecopy "Games") ,menu-bar-games-menu))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1322
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1323 (define-key menu-bar-tools-menu [separator-games]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
1324 menu-bar-separator)
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1325
30586
9b8feaf1cd2f (menu-bar-games-menu): Add Zone.
Eli Zaretskii <eliz@gnu.org>
parents: 30387
diff changeset
1326 (define-key menu-bar-games-menu [zone]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1327 `(menu-item ,(purecopy "Zone Out") zone
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1328 :help ,(purecopy "Play tricks with Emacs display when Emacs is idle")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1329 (define-key menu-bar-games-menu [tetris]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1330 `(menu-item ,(purecopy "Tetris") tetris
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1331 :help ,(purecopy "Falling blocks game")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1332 (define-key menu-bar-games-menu [solitaire]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1333 `(menu-item ,(purecopy "Solitaire") solitaire
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1334 :help ,(purecopy "Get rid of all the stones")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1335 (define-key menu-bar-games-menu [snake]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1336 `(menu-item ,(purecopy "Snake") snake
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1337 :help ,(purecopy "Move snake around avoiding collisions")))
92130
8bebc6db7663 (menu-bar-games-menu): Add Bubbles and Pong. Add :help for Solitaire and Tetris.
Glenn Morris <rgm@gnu.org>
parents: 87649
diff changeset
1338 (define-key menu-bar-games-menu [pong]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1339 `(menu-item ,(purecopy "Pong") pong
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1340 :help ,(purecopy "Bounce the ball to your opponent")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1341 (define-key menu-bar-games-menu [mult]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1342 `(menu-item ,(purecopy "Multiplication Puzzle") mpuz
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1343 :help ,(purecopy "Exercise brain with multiplication")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1344 (define-key menu-bar-games-menu [life]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1345 `(menu-item ,(purecopy "Life") life
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1346 :help ,(purecopy "Watch how John Conway's cellular automaton evolves")))
109941
4ad36c49d812 * lisp/menu-bar.el (menu-bar-games-menu): Add landmark.
Glenn Morris <rgm@gnu.org>
parents: 107295
diff changeset
1347 (define-key menu-bar-games-menu [land]
4ad36c49d812 * lisp/menu-bar.el (menu-bar-games-menu): Add landmark.
Glenn Morris <rgm@gnu.org>
parents: 107295
diff changeset
1348 `(menu-item ,(purecopy "Landmark") landmark
4ad36c49d812 * lisp/menu-bar.el (menu-bar-games-menu): Add landmark.
Glenn Morris <rgm@gnu.org>
parents: 107295
diff changeset
1349 :help ,(purecopy "Watch a neural-network robot learn landmarks")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1350 (define-key menu-bar-games-menu [hanoi]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1351 `(menu-item ,(purecopy "Towers of Hanoi") hanoi
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1352 :help ,(purecopy "Watch Towers-of-Hanoi puzzle solved by Emacs")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1353 (define-key menu-bar-games-menu [gomoku]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1354 `(menu-item ,(purecopy "Gomoku") gomoku
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1355 :help ,(purecopy "Mark 5 contiguous squares (like tic-tac-toe)")))
92130
8bebc6db7663 (menu-bar-games-menu): Add Bubbles and Pong. Add :help for Solitaire and Tetris.
Glenn Morris <rgm@gnu.org>
parents: 87649
diff changeset
1356 (define-key menu-bar-games-menu [bubbles]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1357 `(menu-item ,(purecopy "Bubbles") bubbles
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1358 :help ,(purecopy "Remove all bubbles using the fewest moves")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1359 (define-key menu-bar-games-menu [black-box]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1360 `(menu-item ,(purecopy "Blackbox") blackbox
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1361 :help ,(purecopy "Find balls in a black box by shooting rays")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1362 (define-key menu-bar-games-menu [adventure]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1363 `(menu-item ,(purecopy "Adventure") dunnet
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1364 :help ,(purecopy "Dunnet, a text Adventure game for Emacs")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1365 (define-key menu-bar-games-menu [5x5]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1366 `(menu-item ,(purecopy "5x5") 5x5
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1367 :help ,(purecopy "Fill in all the squares on a 5x5 board")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1368
94491
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1369 (defvar menu-bar-encryption-decryption-menu
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1370 (make-sparse-keymap "Encryption/Decryption"))
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1371
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1372 (define-key menu-bar-tools-menu [encryption-decryption]
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
1373 `(menu-item ,(purecopy "Encryption/Decryption") ,menu-bar-encryption-decryption-menu))
94491
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1374
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1375 (define-key menu-bar-tools-menu [separator-encryption-decryption]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
1376 menu-bar-separator)
94491
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1377
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1378 (define-key menu-bar-encryption-decryption-menu [insert-keys]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1379 `(menu-item ,(purecopy "Insert Keys") epa-insert-keys
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1380 :help ,(purecopy "Insert public keys after the current point")))
94491
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1381
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1382 (define-key menu-bar-encryption-decryption-menu [export-keys]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1383 `(menu-item ,(purecopy "Export Keys") epa-export-keys
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1384 :help ,(purecopy "Export public keys to a file")))
94491
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1385
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1386 (define-key menu-bar-encryption-decryption-menu [import-keys-region]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1387 `(menu-item ,(purecopy "Import Keys from Region") epa-import-keys-region
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1388 :help ,(purecopy "Import public keys from the current region")))
94491
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1389
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1390 (define-key menu-bar-encryption-decryption-menu [import-keys]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1391 `(menu-item ,(purecopy "Import Keys from File...") epa-import-keys
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1392 :help ,(purecopy "Import public keys from a file")))
94491
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1393
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1394 (define-key menu-bar-encryption-decryption-menu [list-keys]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1395 `(menu-item ,(purecopy "List Keys") epa-list-keys
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1396 :help ,(purecopy "Browse your public keyring")))
94491
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1397
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1398 (define-key menu-bar-encryption-decryption-menu [separator-keys]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
1399 menu-bar-separator)
94491
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1400
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1401 (define-key menu-bar-encryption-decryption-menu [sign-region]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1402 `(menu-item ,(purecopy "Sign Region") epa-sign-region
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1403 :help ,(purecopy "Create digital signature of the current region")))
94491
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1404
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1405 (define-key menu-bar-encryption-decryption-menu [verify-region]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1406 `(menu-item ,(purecopy "Verify Region") epa-verify-region
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1407 :help ,(purecopy "Verify digital signature of the current region")))
94491
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1408
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1409 (define-key menu-bar-encryption-decryption-menu [encrypt-region]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1410 `(menu-item ,(purecopy "Encrypt Region") epa-encrypt-region
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1411 :help ,(purecopy "Encrypt the current region")))
94491
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1412
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1413 (define-key menu-bar-encryption-decryption-menu [decrypt-region]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1414 `(menu-item ,(purecopy "Decrypt Region") epa-decrypt-region
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1415 :help ,(purecopy "Decrypt the current region")))
94491
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1416
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1417 (define-key menu-bar-encryption-decryption-menu [separator-file]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
1418 menu-bar-separator)
94491
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1419
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1420 (define-key menu-bar-encryption-decryption-menu [sign-file]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1421 `(menu-item ,(purecopy "Sign File...") epa-sign-file
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1422 :help ,(purecopy "Create digital signature of a file")))
94491
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1423
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1424 (define-key menu-bar-encryption-decryption-menu [verify-file]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1425 `(menu-item ,(purecopy "Verify File...") epa-verify-file
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1426 :help ,(purecopy "Verify digital signature of a file")))
94491
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1427
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1428 (define-key menu-bar-encryption-decryption-menu [encrypt-file]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1429 `(menu-item ,(purecopy "Encrypt File...") epa-encrypt-file
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1430 :help ,(purecopy "Encrypt a file")))
94491
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1431
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1432 (define-key menu-bar-encryption-decryption-menu [decrypt-file]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1433 `(menu-item ,(purecopy "Decrypt File...") epa-decrypt-file
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1434 :help ,(purecopy "Decrypt a file")))
94491
fc974d1f2fbb (menu-bar-tools-menu): Reorder, place Games last.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94417
diff changeset
1435
45324
76c4660660ec (menu-bar-tools-menu) <calculator>: Renamed to "Simple Calculator".
Colin Walters <walters@gnu.org>
parents: 45228
diff changeset
1436 (define-key menu-bar-tools-menu [simple-calculator]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1437 `(menu-item ,(purecopy "Simple Calculator") calculator
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1438 :help ,(purecopy "Invoke the Emacs built-in quick calculator")))
45324
76c4660660ec (menu-bar-tools-menu) <calculator>: Renamed to "Simple Calculator".
Colin Walters <walters@gnu.org>
parents: 45228
diff changeset
1439 (define-key menu-bar-tools-menu [calc]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1440 `(menu-item ,(purecopy "Programmable Calculator") calc
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1441 :help ,(purecopy "Invoke the Emacs built-in full scientific calculator")))
28557
6f1d9b65d1f8 (menu-bar-options-menu): Make `mule' always visible.
Dave Love <fx@gnu.org>
parents: 28258
diff changeset
1442 (define-key menu-bar-tools-menu [calendar]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1443 `(menu-item ,(purecopy "Calendar") calendar
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1444 :help ,(purecopy "Invoke the Emacs built-in calendar")))
43305
976d3d8ab9a3 (menu-bar-tools-menu): Add an item for Calculator.
Eli Zaretskii <eliz@gnu.org>
parents: 43254
diff changeset
1445
976d3d8ab9a3 (menu-bar-tools-menu): Add an item for Calculator.
Eli Zaretskii <eliz@gnu.org>
parents: 43254
diff changeset
1446 (define-key menu-bar-tools-menu [separator-net]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
1447 menu-bar-separator)
43305
976d3d8ab9a3 (menu-bar-tools-menu): Add an item for Calculator.
Eli Zaretskii <eliz@gnu.org>
parents: 43254
diff changeset
1448
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1449 (define-key menu-bar-tools-menu [directory-search]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1450 `(menu-item ,(purecopy "Directory Search") eudc-tools-menu))
28557
6f1d9b65d1f8 (menu-bar-options-menu): Make `mule' always visible.
Dave Love <fx@gnu.org>
parents: 28258
diff changeset
1451 (define-key menu-bar-tools-menu [compose-mail]
106018
227bcb572dbe (menu-bar-tools-menu): Read and send mail entries are not constants. (Bug#4913)
Glenn Morris <rgm@gnu.org>
parents: 105994
diff changeset
1452 `(menu-item (format "Send Mail (with %s)" (send-mail-item-name)) compose-mail
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
1453 :visible (and mail-user-agent (not (eq mail-user-agent 'ignore)))
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
1454 :help ,(purecopy "Send a mail message")))
28557
6f1d9b65d1f8 (menu-bar-options-menu): Make `mule' always visible.
Dave Love <fx@gnu.org>
parents: 28258
diff changeset
1455 (define-key menu-bar-tools-menu [rmail]
106018
227bcb572dbe (menu-bar-tools-menu): Read and send mail entries are not constants. (Bug#4913)
Glenn Morris <rgm@gnu.org>
parents: 105994
diff changeset
1456 `(menu-item (format "Read Mail (with %s)" (read-mail-item-name))
227bcb572dbe (menu-bar-tools-menu): Read and send mail entries are not constants. (Bug#4913)
Glenn Morris <rgm@gnu.org>
parents: 105994
diff changeset
1457 menu-bar-read-mail
227bcb572dbe (menu-bar-tools-menu): Read and send mail entries are not constants. (Bug#4913)
Glenn Morris <rgm@gnu.org>
parents: 105994
diff changeset
1458 :visible (and read-mail-command
227bcb572dbe (menu-bar-tools-menu): Read and send mail entries are not constants. (Bug#4913)
Glenn Morris <rgm@gnu.org>
parents: 105994
diff changeset
1459 (not (eq read-mail-command 'ignore)))
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
1460 :help ,(purecopy "Read your mail and reply to it")))
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1461
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1462 (defun menu-bar-read-mail ()
47152
58ccd45ac06b (menu-bar-read-mail): Doc fix.
Markus Rost <rost@math.uni-bielefeld.de>
parents: 46925
diff changeset
1463 "Read mail using `read-mail-command'."
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1464 (interactive)
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1465 (call-interactively read-mail-command))
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1466
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1467 (define-key menu-bar-tools-menu [gnus]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1468 `(menu-item ,(purecopy "Read Net News (Gnus)") gnus
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1469 :help ,(purecopy "Read network news groups")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1470
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1471 (define-key menu-bar-tools-menu [separator-vc]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
1472 menu-bar-separator)
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1473
28258
03e06f15f3d4 Add an entry for PCL-CVS' global menu.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 27773
diff changeset
1474 (define-key menu-bar-tools-menu [pcl-cvs]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1475 `(menu-item ,(purecopy "PCL-CVS") cvs-global-menu))
78822
1926a08e8926 * vc-arch.el (vc-arch-extra-menu-map): New var and fun.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 78393
diff changeset
1476 (define-key menu-bar-tools-menu [vc] nil) ;Create the place for the VC menu.
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1477
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1478 (define-key menu-bar-tools-menu [separator-compare]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
1479 menu-bar-separator)
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1480
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1481 (define-key menu-bar-tools-menu [epatch]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1482 `(menu-item ,(purecopy "Apply Patch") menu-bar-epatch-menu))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1483 (define-key menu-bar-tools-menu [ediff-merge]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1484 `(menu-item ,(purecopy "Merge") menu-bar-ediff-merge-menu))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1485 (define-key menu-bar-tools-menu [compare]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1486 `(menu-item ,(purecopy "Compare (Ediff)") menu-bar-ediff-menu))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1487
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1488 (define-key menu-bar-tools-menu [separator-spell]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
1489 menu-bar-separator)
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1490
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1491 (define-key menu-bar-tools-menu [spell]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1492 `(menu-item ,(purecopy "Spell Checking") ispell-menu-map))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1493
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1494 (define-key menu-bar-tools-menu [separator-prog]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
1495 menu-bar-separator)
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1496
105815
cdc718e48308 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
Chong Yidong <cyd@stupidchicken.com>
parents: 105717
diff changeset
1497 (define-key menu-bar-tools-menu [semantic]
cdc718e48308 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
Chong Yidong <cyd@stupidchicken.com>
parents: 105717
diff changeset
1498 `(menu-item ,(purecopy "Source Code Parsers (Semantic)")
cdc718e48308 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
Chong Yidong <cyd@stupidchicken.com>
parents: 105717
diff changeset
1499 semantic-mode
cdc718e48308 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
Chong Yidong <cyd@stupidchicken.com>
parents: 105717
diff changeset
1500 :help ,(purecopy "Toggle automatic parsing in source code buffers (Semantic mode)")
cdc718e48308 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
Chong Yidong <cyd@stupidchicken.com>
parents: 105717
diff changeset
1501 :button (:toggle . (bound-and-true-p semantic-mode))))
cdc718e48308 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
Chong Yidong <cyd@stupidchicken.com>
parents: 105717
diff changeset
1502
cdc718e48308 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
Chong Yidong <cyd@stupidchicken.com>
parents: 105717
diff changeset
1503 (define-key menu-bar-tools-menu [ede]
cdc718e48308 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
Chong Yidong <cyd@stupidchicken.com>
parents: 105717
diff changeset
1504 `(menu-item ,(purecopy "Project support (EDE)")
cdc718e48308 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
Chong Yidong <cyd@stupidchicken.com>
parents: 105717
diff changeset
1505 global-ede-mode
cdc718e48308 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
Chong Yidong <cyd@stupidchicken.com>
parents: 105717
diff changeset
1506 :help ,(purecopy "Toggle the Emacs Development Environment (Global EDE mode)")
cdc718e48308 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
Chong Yidong <cyd@stupidchicken.com>
parents: 105717
diff changeset
1507 :button (:toggle . (bound-and-true-p global-ede-mode))))
cdc718e48308 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
Chong Yidong <cyd@stupidchicken.com>
parents: 105717
diff changeset
1508
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1509 (define-key menu-bar-tools-menu [gdb]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1510 `(menu-item ,(purecopy "Debugger (GDB)...") gdb
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1511 :help ,(purecopy "Debug a program from within Emacs with GDB")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1512 (define-key menu-bar-tools-menu [shell-on-region]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1513 `(menu-item ,(purecopy "Shell Command on Region...") shell-command-on-region
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1514 :enable mark-active
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1515 :help ,(purecopy "Pass marked region to a shell command")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1516 (define-key menu-bar-tools-menu [shell]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1517 `(menu-item ,(purecopy "Shell Command...") shell-command
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1518 :help ,(purecopy "Invoke a shell command and catch its output")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1519 (define-key menu-bar-tools-menu [compile]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1520 `(menu-item ,(purecopy "Compile...") compile
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1521 :help ,(purecopy "Invoke compiler or Make, view compilation errors")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1522 (define-key menu-bar-tools-menu [grep]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1523 `(menu-item ,(purecopy "Search Files (Grep)...") grep
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1524 :help ,(purecopy "Search files for strings or regexps (with Grep)")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1525
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1526
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1527 ;; The "Help" menu items
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1528
20336
6c26b3f61e02 (menu-bar-help-menu): Reorganize into more submenus.
Richard M. Stallman <rms@gnu.org>
parents: 19793
diff changeset
1529 (defvar menu-bar-describe-menu (make-sparse-keymap "Describe"))
6c26b3f61e02 (menu-bar-help-menu): Reorganize into more submenus.
Richard M. Stallman <rms@gnu.org>
parents: 19793
diff changeset
1530
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1531 (define-key menu-bar-describe-menu [mule-diag]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1532 `(menu-item ,(purecopy "Show All of Mule Status") mule-diag
104823
68150c643e2e Use default-value rather than default-enable-multibyte-characters.
Glenn Morris <rgm@gnu.org>
parents: 102399
diff changeset
1533 :visible (default-value 'enable-multibyte-characters)
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1534 :help ,(purecopy "Display multilingual environment settings")))
41475
11d8d3ad5061 (menu-bar-apropos-menu): Moved all `apropos' bindings here.
Sam Steingold <sds@gnu.org>
parents: 41216
diff changeset
1535 (define-key menu-bar-describe-menu [describe-coding-system-briefly]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1536 `(menu-item ,(purecopy "Describe Coding System (Briefly)")
41475
11d8d3ad5061 (menu-bar-apropos-menu): Moved all `apropos' bindings here.
Sam Steingold <sds@gnu.org>
parents: 41216
diff changeset
1537 describe-current-coding-system-briefly
104823
68150c643e2e Use default-value rather than default-enable-multibyte-characters.
Glenn Morris <rgm@gnu.org>
parents: 102399
diff changeset
1538 :visible (default-value 'enable-multibyte-characters)))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1539 (define-key menu-bar-describe-menu [describe-coding-system]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1540 `(menu-item ,(purecopy "Describe Coding System...") describe-coding-system
104823
68150c643e2e Use default-value rather than default-enable-multibyte-characters.
Glenn Morris <rgm@gnu.org>
parents: 102399
diff changeset
1541 :visible (default-value 'enable-multibyte-characters)))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1542 (define-key menu-bar-describe-menu [describe-input-method]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1543 `(menu-item ,(purecopy "Describe Input Method...") describe-input-method
104823
68150c643e2e Use default-value rather than default-enable-multibyte-characters.
Glenn Morris <rgm@gnu.org>
parents: 102399
diff changeset
1544 :visible (default-value 'enable-multibyte-characters)
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1545 :help ,(purecopy "Keyboard layout for specific input method")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1546 (define-key menu-bar-describe-menu [describe-language-environment]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1547 `(menu-item ,(purecopy "Describe Language Environment")
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
1548 ,describe-language-environment-map))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1549
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1550 (define-key menu-bar-describe-menu [separator-desc-mule]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
1551 menu-bar-separator)
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1552
20336
6c26b3f61e02 (menu-bar-help-menu): Reorganize into more submenus.
Richard M. Stallman <rms@gnu.org>
parents: 19793
diff changeset
1553 (define-key menu-bar-describe-menu [list-keybindings]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1554 `(menu-item ,(purecopy "List Key Bindings") describe-bindings
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1555 :help ,(purecopy "Display all current key bindings (keyboard shortcuts)")))
41475
11d8d3ad5061 (menu-bar-apropos-menu): Moved all `apropos' bindings here.
Sam Steingold <sds@gnu.org>
parents: 41216
diff changeset
1556 (define-key menu-bar-describe-menu [describe-current-display-table]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1557 `(menu-item ,(purecopy "Describe Display Table") describe-current-display-table
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1558 :help ,(purecopy "Describe the current display table")))
109992
640cdeb464c1 Improvements to describe-package buffer.
Chong Yidong <cyd@stupidchicken.com>
parents: 109982
diff changeset
1559 (define-key menu-bar-describe-menu [describe-package]
640cdeb464c1 Improvements to describe-package buffer.
Chong Yidong <cyd@stupidchicken.com>
parents: 109982
diff changeset
1560 `(menu-item ,(purecopy "Describe Package...") describe-package
640cdeb464c1 Improvements to describe-package buffer.
Chong Yidong <cyd@stupidchicken.com>
parents: 109982
diff changeset
1561 :help ,(purecopy "Display documentation of a Lisp package")))
41475
11d8d3ad5061 (menu-bar-apropos-menu): Moved all `apropos' bindings here.
Sam Steingold <sds@gnu.org>
parents: 41216
diff changeset
1562 (define-key menu-bar-describe-menu [describe-face]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1563 `(menu-item ,(purecopy "Describe Face...") describe-face
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1564 :help ,(purecopy "Display the properties of a face")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1565 (define-key menu-bar-describe-menu [describe-variable]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1566 `(menu-item ,(purecopy "Describe Variable...") describe-variable
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1567 :help ,(purecopy "Display documentation of variable/option")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1568 (define-key menu-bar-describe-menu [describe-function]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1569 `(menu-item ,(purecopy "Describe Function...") describe-function
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1570 :help ,(purecopy "Display documentation of function/command")))
48524
710d401ff225 (menu-bar-describe-menu): Add "What's This?" item.
Richard M. Stallman <rms@gnu.org>
parents: 48407
diff changeset
1571 (define-key menu-bar-describe-menu [describe-key-1]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1572 `(menu-item ,(purecopy "Describe Key or Mouse Operation...") describe-key
48524
710d401ff225 (menu-bar-describe-menu): Add "What's This?" item.
Richard M. Stallman <rms@gnu.org>
parents: 48407
diff changeset
1573 ;; Users typically don't identify keys and menu items...
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1574 :help ,(purecopy "Display documentation of command bound to a \
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1575 key, a click, or a menu-item")))
20336
6c26b3f61e02 (menu-bar-help-menu): Reorganize into more submenus.
Richard M. Stallman <rms@gnu.org>
parents: 19793
diff changeset
1576 (define-key menu-bar-describe-menu [describe-mode]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1577 `(menu-item ,(purecopy "Describe Buffer Modes") describe-mode
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1578 :help ,(purecopy "Describe this buffer's major and minor mode")))
20336
6c26b3f61e02 (menu-bar-help-menu): Reorganize into more submenus.
Richard M. Stallman <rms@gnu.org>
parents: 19793
diff changeset
1579
78894
ab22b2902e1f (menu-bar-search-documentation-menu): Renamed from menu-bar-apropos-menu.
Eli Zaretskii <eliz@gnu.org>
parents: 78822
diff changeset
1580 (defvar menu-bar-search-documentation-menu
ab22b2902e1f (menu-bar-search-documentation-menu): Renamed from menu-bar-apropos-menu.
Eli Zaretskii <eliz@gnu.org>
parents: 78822
diff changeset
1581 (make-sparse-keymap "Search Documentation"))
41703
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1582 (defun menu-bar-read-lispref ()
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1583 "Display the Emacs Lisp Reference manual in Info mode."
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1584 (interactive)
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1585 (info "elisp"))
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1586
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1587 (defun menu-bar-read-lispintro ()
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1588 "Display the Introduction to Emacs Lisp Programming in Info mode."
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1589 (interactive)
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1590 (info "eintr"))
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1591
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1592 (defun search-emacs-glossary ()
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1593 "Display the Glossary node of the Emacs manual in Info mode."
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1594 (interactive)
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1595 (info "(emacs)Glossary"))
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1596
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1597 (defun emacs-index-search (topic)
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1598 "Look up TOPIC in the indices of the Emacs User Manual."
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1599 (interactive "sSubject to look up: ")
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1600 (info "emacs")
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1601 (Info-index topic))
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1602
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1603 (defun elisp-index-search (topic)
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1604 "Look up TOPIC in the indices of the Emacs Lisp Reference Manual."
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1605 (interactive "sSubject to look up: ")
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1606 (info "elisp")
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1607 (Info-index topic))
41475
11d8d3ad5061 (menu-bar-apropos-menu): Moved all `apropos' bindings here.
Sam Steingold <sds@gnu.org>
parents: 41216
diff changeset
1608
78894
ab22b2902e1f (menu-bar-search-documentation-menu): Renamed from menu-bar-apropos-menu.
Eli Zaretskii <eliz@gnu.org>
parents: 78822
diff changeset
1609 (define-key menu-bar-search-documentation-menu [search-documentation-strings]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1610 `(menu-item ,(purecopy "Search Documentation Strings...") apropos-documentation
41703
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1611 :help
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1612 ,(purecopy "Find functions and variables whose doc strings match a regexp")))
78894
ab22b2902e1f (menu-bar-search-documentation-menu): Renamed from menu-bar-apropos-menu.
Eli Zaretskii <eliz@gnu.org>
parents: 78822
diff changeset
1613 (define-key menu-bar-search-documentation-menu [find-any-object-by-name]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1614 `(menu-item ,(purecopy "Find Any Object by Name...") apropos
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1615 :help ,(purecopy "Find symbols of any kind whose names match a regexp")))
78894
ab22b2902e1f (menu-bar-search-documentation-menu): Renamed from menu-bar-apropos-menu.
Eli Zaretskii <eliz@gnu.org>
parents: 78822
diff changeset
1616 (define-key menu-bar-search-documentation-menu [find-option-by-value]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1617 `(menu-item ,(purecopy "Find Options by Value...") apropos-value
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1618 :help ,(purecopy "Find variables whose values match a regexp")))
78894
ab22b2902e1f (menu-bar-search-documentation-menu): Renamed from menu-bar-apropos-menu.
Eli Zaretskii <eliz@gnu.org>
parents: 78822
diff changeset
1619 (define-key menu-bar-search-documentation-menu [find-options-by-name]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1620 `(menu-item ,(purecopy "Find Options by Name...") apropos-variable
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1621 :help ,(purecopy "Find variables whose names match a regexp")))
78894
ab22b2902e1f (menu-bar-search-documentation-menu): Renamed from menu-bar-apropos-menu.
Eli Zaretskii <eliz@gnu.org>
parents: 78822
diff changeset
1622 (define-key menu-bar-search-documentation-menu [find-commands-by-name]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1623 `(menu-item ,(purecopy "Find Commands by Name...") apropos-command
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1624 :help ,(purecopy "Find commands whose names match a regexp")))
78894
ab22b2902e1f (menu-bar-search-documentation-menu): Renamed from menu-bar-apropos-menu.
Eli Zaretskii <eliz@gnu.org>
parents: 78822
diff changeset
1625 (define-key menu-bar-search-documentation-menu [sep1]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
1626 menu-bar-separator)
78894
ab22b2902e1f (menu-bar-search-documentation-menu): Renamed from menu-bar-apropos-menu.
Eli Zaretskii <eliz@gnu.org>
parents: 78822
diff changeset
1627 (define-key menu-bar-search-documentation-menu [lookup-command-in-manual]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1628 `(menu-item ,(purecopy "Look Up Command in User Manual...") Info-goto-emacs-command-node
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1629 :help ,(purecopy "Display manual section that describes a command")))
78894
ab22b2902e1f (menu-bar-search-documentation-menu): Renamed from menu-bar-apropos-menu.
Eli Zaretskii <eliz@gnu.org>
parents: 78822
diff changeset
1630 (define-key menu-bar-search-documentation-menu [lookup-key-in-manual]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1631 `(menu-item ,(purecopy "Look Up Key in User Manual...") Info-goto-emacs-key-command-node
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1632 :help ,(purecopy "Display manual section that describes a key")))
78894
ab22b2902e1f (menu-bar-search-documentation-menu): Renamed from menu-bar-apropos-menu.
Eli Zaretskii <eliz@gnu.org>
parents: 78822
diff changeset
1633 (define-key menu-bar-search-documentation-menu [lookup-subject-in-elisp-manual]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1634 `(menu-item ,(purecopy "Look Up Subject in ELisp Manual...") elisp-index-search
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1635 :help ,(purecopy "Find description of a subject in Emacs Lisp manual")))
78894
ab22b2902e1f (menu-bar-search-documentation-menu): Renamed from menu-bar-apropos-menu.
Eli Zaretskii <eliz@gnu.org>
parents: 78822
diff changeset
1636 (define-key menu-bar-search-documentation-menu [lookup-subject-in-emacs-manual]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1637 `(menu-item ,(purecopy "Look Up Subject in User Manual...") emacs-index-search
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1638 :help ,(purecopy "Find description of a subject in Emacs User manual")))
78894
ab22b2902e1f (menu-bar-search-documentation-menu): Renamed from menu-bar-apropos-menu.
Eli Zaretskii <eliz@gnu.org>
parents: 78822
diff changeset
1639 (define-key menu-bar-search-documentation-menu [emacs-terminology]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1640 `(menu-item ,(purecopy "Emacs Terminology") search-emacs-glossary
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1641 :help ,(purecopy "Display the Glossary section of the Emacs manual")))
41475
11d8d3ad5061 (menu-bar-apropos-menu): Moved all `apropos' bindings here.
Sam Steingold <sds@gnu.org>
parents: 41216
diff changeset
1642
41703
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1643 (defvar menu-bar-manuals-menu (make-sparse-keymap "More Manuals"))
20336
6c26b3f61e02 (menu-bar-help-menu): Reorganize into more submenus.
Richard M. Stallman <rms@gnu.org>
parents: 19793
diff changeset
1644
6c26b3f61e02 (menu-bar-help-menu): Reorganize into more submenus.
Richard M. Stallman <rms@gnu.org>
parents: 19793
diff changeset
1645 (define-key menu-bar-manuals-menu [man]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1646 `(menu-item ,(purecopy "Read Man Page...") manual-entry
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1647 :help ,(purecopy "Man-page docs for external commands and libraries")))
20336
6c26b3f61e02 (menu-bar-help-menu): Reorganize into more submenus.
Richard M. Stallman <rms@gnu.org>
parents: 19793
diff changeset
1648 (define-key menu-bar-manuals-menu [sep2]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
1649 menu-bar-separator)
41703
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1650 (define-key menu-bar-manuals-menu [order-emacs-manuals]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1651 `(menu-item ,(purecopy "Ordering Manuals") view-order-manuals
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1652 :help ,(purecopy "How to order manuals from the Free Software Foundation")))
78894
ab22b2902e1f (menu-bar-search-documentation-menu): Renamed from menu-bar-apropos-menu.
Eli Zaretskii <eliz@gnu.org>
parents: 78822
diff changeset
1653 (define-key menu-bar-manuals-menu [lookup-subject-in-all-manuals]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1654 `(menu-item ,(purecopy "Lookup Subject in all Manuals...") info-apropos
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1655 :help ,(purecopy "Find description of a subject in all installed manuals")))
78894
ab22b2902e1f (menu-bar-search-documentation-menu): Renamed from menu-bar-apropos-menu.
Eli Zaretskii <eliz@gnu.org>
parents: 78822
diff changeset
1656 (define-key menu-bar-manuals-menu [other-manuals]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1657 `(menu-item ,(purecopy "All Other Manuals (Info)") Info-directory
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1658 :help ,(purecopy "Read any of the installed manuals")))
78894
ab22b2902e1f (menu-bar-search-documentation-menu): Renamed from menu-bar-apropos-menu.
Eli Zaretskii <eliz@gnu.org>
parents: 78822
diff changeset
1659 (define-key menu-bar-manuals-menu [emacs-lisp-reference]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1660 `(menu-item ,(purecopy "Emacs Lisp Reference") menu-bar-read-lispref
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1661 :help ,(purecopy "Read the Emacs Lisp Reference manual")))
107295
20bfefe13c4c (menu-bar-manuals-menu): Fix typo.
Katsumi Yamaoka <yamaoka@jpl.org>
parents: 106815
diff changeset
1662 (define-key menu-bar-manuals-menu [emacs-lisp-intro]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1663 `(menu-item ,(purecopy "Introduction to Emacs Lisp") menu-bar-read-lispintro
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1664 :help ,(purecopy "Read the Introduction to Emacs Lisp Programming")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1665
79377
dc27351d0e7f (menu-bar-help-menu):
Juri Linkov <juri@jurta.org>
parents: 79167
diff changeset
1666 (define-key menu-bar-help-menu [about-gnu-project]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1667 `(menu-item ,(purecopy "About GNU") describe-gnu-project
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1668 :help ,(purecopy "About the GNU System, GNU Project, and GNU/Linux")))
79377
dc27351d0e7f (menu-bar-help-menu):
Juri Linkov <juri@jurta.org>
parents: 79167
diff changeset
1669 (define-key menu-bar-help-menu [about-emacs]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1670 `(menu-item ,(purecopy "About Emacs") about-emacs
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1671 :help ,(purecopy "Display version number, copyright info, and basic help")))
41703
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1672 (define-key menu-bar-help-menu [sep4]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
1673 menu-bar-separator)
20762
ec3a35db5352 (menu-bar-file-menu): Add Recover Session menu item.
Richard M. Stallman <rms@gnu.org>
parents: 20647
diff changeset
1674 (define-key menu-bar-help-menu [describe-no-warranty]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1675 `(menu-item ,(purecopy "(Non)Warranty") describe-no-warranty
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1676 :help ,(purecopy "Explain that Emacs has NO WARRANTY")))
20762
ec3a35db5352 (menu-bar-file-menu): Add Recover Session menu item.
Richard M. Stallman <rms@gnu.org>
parents: 20647
diff changeset
1677 (define-key menu-bar-help-menu [describe-copying]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1678 `(menu-item ,(purecopy "Copying Conditions") describe-copying
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1679 :help ,(purecopy "Show the Emacs license (GPL)")))
78894
ab22b2902e1f (menu-bar-search-documentation-menu): Renamed from menu-bar-apropos-menu.
Eli Zaretskii <eliz@gnu.org>
parents: 78822
diff changeset
1680 (define-key menu-bar-help-menu [getting-new-versions]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1681 `(menu-item ,(purecopy "Getting New Versions") describe-distribution
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1682 :help ,(purecopy "How to get the latest version of Emacs")))
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1683 (defun menu-bar-help-extra-packages ()
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1684 "Display help about some additional packages available for Emacs."
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1685 (interactive)
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1686 (let (enable-local-variables)
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1687 (view-file (expand-file-name "MORE.STUFF"
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1688 data-directory))
101183
96e4db45c8a5 (menu-bar-help-extra-packages): Use goto-address-mode instead of goto-address.
Juri Linkov <juri@jurta.org>
parents: 101152
diff changeset
1689 (goto-address-mode 1)))
20336
6c26b3f61e02 (menu-bar-help-menu): Reorganize into more submenus.
Richard M. Stallman <rms@gnu.org>
parents: 19793
diff changeset
1690 (define-key menu-bar-help-menu [sep2]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
1691 menu-bar-separator)
79377
dc27351d0e7f (menu-bar-help-menu):
Juri Linkov <juri@jurta.org>
parents: 79167
diff changeset
1692 (define-key menu-bar-help-menu [external-packages]
109992
640cdeb464c1 Improvements to describe-package buffer.
Chong Yidong <cyd@stupidchicken.com>
parents: 109982
diff changeset
1693 `(menu-item ,(purecopy "Finding Extra Packages") menu-bar-help-extra-packages
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1694 :help ,(purecopy "Lisp packages distributed separately for use in Emacs")))
78894
ab22b2902e1f (menu-bar-search-documentation-menu): Renamed from menu-bar-apropos-menu.
Eli Zaretskii <eliz@gnu.org>
parents: 78822
diff changeset
1695 (define-key menu-bar-help-menu [find-emacs-packages]
109992
640cdeb464c1 Improvements to describe-package buffer.
Chong Yidong <cyd@stupidchicken.com>
parents: 109982
diff changeset
1696 `(menu-item ,(purecopy "Search Built-in Packages") finder-by-keyword
640cdeb464c1 Improvements to describe-package buffer.
Chong Yidong <cyd@stupidchicken.com>
parents: 109982
diff changeset
1697 :help ,(purecopy "Find built-in packages and features by keyword")))
78894
ab22b2902e1f (menu-bar-search-documentation-menu): Renamed from menu-bar-apropos-menu.
Eli Zaretskii <eliz@gnu.org>
parents: 78822
diff changeset
1698 (define-key menu-bar-help-menu [more-manuals]
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
1699 `(menu-item ,(purecopy "More Manuals") ,menu-bar-manuals-menu))
41703
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1700 (define-key menu-bar-help-menu [emacs-manual]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1701 `(menu-item ,(purecopy "Read the Emacs Manual") info-emacs-manual
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1702 :help ,(purecopy "Full documentation of Emacs features")))
20336
6c26b3f61e02 (menu-bar-help-menu): Reorganize into more submenus.
Richard M. Stallman <rms@gnu.org>
parents: 19793
diff changeset
1703 (define-key menu-bar-help-menu [describe]
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
1704 `(menu-item ,(purecopy "Describe") ,menu-bar-describe-menu))
78894
ab22b2902e1f (menu-bar-search-documentation-menu): Renamed from menu-bar-apropos-menu.
Eli Zaretskii <eliz@gnu.org>
parents: 78822
diff changeset
1705 (define-key menu-bar-help-menu [search-documentation]
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
1706 `(menu-item ,(purecopy "Search Documentation") ,menu-bar-search-documentation-menu))
20336
6c26b3f61e02 (menu-bar-help-menu): Reorganize into more submenus.
Richard M. Stallman <rms@gnu.org>
parents: 19793
diff changeset
1707 (define-key menu-bar-help-menu [sep1]
105940
f7147d70f6ef * subr.el (menu-bar-separator): New defconst.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105870
diff changeset
1708 menu-bar-separator)
79377
dc27351d0e7f (menu-bar-help-menu):
Juri Linkov <juri@jurta.org>
parents: 79167
diff changeset
1709 (define-key menu-bar-help-menu [emacs-psychotherapist]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1710 `(menu-item ,(purecopy "Emacs Psychotherapist") doctor
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1711 :help ,(purecopy "Our doctor will help you feel better")))
78894
ab22b2902e1f (menu-bar-search-documentation-menu): Renamed from menu-bar-apropos-menu.
Eli Zaretskii <eliz@gnu.org>
parents: 78822
diff changeset
1712 (define-key menu-bar-help-menu [send-emacs-bug-report]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1713 `(menu-item ,(purecopy "Send Bug Report...") report-emacs-bug
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1714 :help ,(purecopy "Send e-mail to Emacs maintainers")))
78894
ab22b2902e1f (menu-bar-search-documentation-menu): Renamed from menu-bar-apropos-menu.
Eli Zaretskii <eliz@gnu.org>
parents: 78822
diff changeset
1715 (define-key menu-bar-help-menu [emacs-known-problems]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1716 `(menu-item ,(purecopy "Emacs Known Problems") view-emacs-problems
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1717 :help ,(purecopy "Read about known problems with Emacs")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1718 (define-key menu-bar-help-menu [emacs-news]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1719 `(menu-item ,(purecopy "Emacs News") view-emacs-news
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1720 :help ,(purecopy "New features of this version")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1721 (define-key menu-bar-help-menu [emacs-faq]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1722 `(menu-item ,(purecopy "Emacs FAQ") view-emacs-FAQ
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1723 :help ,(purecopy "Frequently asked (and answered) questions about Emacs")))
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1724
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1725 (defun help-with-tutorial-spec-language ()
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1726 "Use the Emacs tutorial, specifying which language you want."
49597
e88404e8f2cf Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49012
diff changeset
1727 (interactive)
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1728 (help-with-tutorial t))
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1729
29685
90ecedc87917 (menu-bar-help-menu): Add menu item for non-English
Gerd Moellmann <gerd@gnu.org>
parents: 29586
diff changeset
1730 (define-key menu-bar-help-menu [emacs-tutorial-language-specific]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1731 `(menu-item ,(purecopy "Emacs Tutorial (choose language)...")
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1732 help-with-tutorial-spec-language
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1733 :help ,(purecopy "Learn how to use Emacs (choose a language)")))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1734 (define-key menu-bar-help-menu [emacs-tutorial]
105050
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1735 `(menu-item ,(purecopy "Emacs Tutorial") help-with-tutorial
f519ea72decd (menu-bar-file-menu, menu-bar-file-menu)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104823
diff changeset
1736 :help ,(purecopy "Learn how to use Emacs")))
2178
76da020d14f8 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2177
diff changeset
1737
111215
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
1738 ;; In OS X it's in the app menu already.
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
1739 ;; FIXME? There already is an "About Emacs" (sans ...) entry in the Help menu.
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
1740 (and (featurep 'ns)
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
1741 (not (eq system-type 'darwin))
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
1742 (define-key menu-bar-help-menu [info-panel]
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
1743 `(menu-item ,(purecopy "About Emacs...") ns-do-emacs-info-panel)))
99e2b63fd6dd Move ns-specific menu-bar code from term/ns-win.el to menu-bar.el.
Glenn Morris <rgm@gnu.org>
parents: 111173
diff changeset
1744
65404
b50dda01c73d (menu-bar-menu-frame-live-and-visible-p)
Eli Zaretskii <eliz@gnu.org>
parents: 65399
diff changeset
1745 (defun menu-bar-menu-frame-live-and-visible-p ()
b50dda01c73d (menu-bar-menu-frame-live-and-visible-p)
Eli Zaretskii <eliz@gnu.org>
parents: 65399
diff changeset
1746 "Return non-nil if the menu frame is alive and visible.
b50dda01c73d (menu-bar-menu-frame-live-and-visible-p)
Eli Zaretskii <eliz@gnu.org>
parents: 65399
diff changeset
1747 The menu frame is the frame for which we are updating the menu."
67705
4fc189896464 (menu-bar-menu-frame-live-and-visible-p)
Juri Linkov <juri@jurta.org>
parents: 67628
diff changeset
1748 (let ((menu-frame (or menu-updating-frame (selected-frame))))
65404
b50dda01c73d (menu-bar-menu-frame-live-and-visible-p)
Eli Zaretskii <eliz@gnu.org>
parents: 65399
diff changeset
1749 (and (frame-live-p menu-frame)
b50dda01c73d (menu-bar-menu-frame-live-and-visible-p)
Eli Zaretskii <eliz@gnu.org>
parents: 65399
diff changeset
1750 (frame-visible-p menu-frame))))
b50dda01c73d (menu-bar-menu-frame-live-and-visible-p)
Eli Zaretskii <eliz@gnu.org>
parents: 65399
diff changeset
1751
b50dda01c73d (menu-bar-menu-frame-live-and-visible-p)
Eli Zaretskii <eliz@gnu.org>
parents: 65399
diff changeset
1752 (defun menu-bar-non-minibuffer-window-p ()
b50dda01c73d (menu-bar-menu-frame-live-and-visible-p)
Eli Zaretskii <eliz@gnu.org>
parents: 65399
diff changeset
1753 "Return non-nil if selected window of the menu frame is not a minibuf window.
b50dda01c73d (menu-bar-menu-frame-live-and-visible-p)
Eli Zaretskii <eliz@gnu.org>
parents: 65399
diff changeset
1754
b50dda01c73d (menu-bar-menu-frame-live-and-visible-p)
Eli Zaretskii <eliz@gnu.org>
parents: 65399
diff changeset
1755 See the documentation of `menu-bar-menu-frame-live-and-visible-p'
b50dda01c73d (menu-bar-menu-frame-live-and-visible-p)
Eli Zaretskii <eliz@gnu.org>
parents: 65399
diff changeset
1756 for the definition of the menu frame."
67705
4fc189896464 (menu-bar-menu-frame-live-and-visible-p)
Juri Linkov <juri@jurta.org>
parents: 67628
diff changeset
1757 (let ((menu-frame (or menu-updating-frame (selected-frame))))
65404
b50dda01c73d (menu-bar-menu-frame-live-and-visible-p)
Eli Zaretskii <eliz@gnu.org>
parents: 65399
diff changeset
1758 (not (window-minibuffer-p (frame-selected-window menu-frame)))))
b50dda01c73d (menu-bar-menu-frame-live-and-visible-p)
Eli Zaretskii <eliz@gnu.org>
parents: 65399
diff changeset
1759
67628
6b7e5db3f184 (kill-this-buffer): Set a good example by using menu bar, not menubar
Bill Wohler <wohler@newt.com>
parents: 67602
diff changeset
1760 (defun kill-this-buffer () ; for the menu bar
93010
6bc37f1965b5 (kill-this-buffer): Use menu-bar-non-minibuffer-window-p
Juri Linkov <juri@jurta.org>
parents: 92948
diff changeset
1761 "Kill the current buffer.
6bc37f1965b5 (kill-this-buffer): Use menu-bar-non-minibuffer-window-p
Juri Linkov <juri@jurta.org>
parents: 92948
diff changeset
1762 When called in the minibuffer, get out of the minibuffer
6bc37f1965b5 (kill-this-buffer): Use menu-bar-non-minibuffer-window-p
Juri Linkov <juri@jurta.org>
parents: 92948
diff changeset
1763 using `abort-recursive-edit'."
2175
61d3483521d7 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1764 (interactive)
93010
6bc37f1965b5 (kill-this-buffer): Use menu-bar-non-minibuffer-window-p
Juri Linkov <juri@jurta.org>
parents: 92948
diff changeset
1765 (if (menu-bar-non-minibuffer-window-p)
6bc37f1965b5 (kill-this-buffer): Use menu-bar-non-minibuffer-window-p
Juri Linkov <juri@jurta.org>
parents: 92948
diff changeset
1766 (kill-buffer (current-buffer))
6bc37f1965b5 (kill-this-buffer): Use menu-bar-non-minibuffer-window-p
Juri Linkov <juri@jurta.org>
parents: 92948
diff changeset
1767 (abort-recursive-edit)))
2175
61d3483521d7 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1768
2178
76da020d14f8 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2177
diff changeset
1769 (defun kill-this-buffer-enabled-p ()
76da020d14f8 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2177
diff changeset
1770 (let ((count 0)
76da020d14f8 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2177
diff changeset
1771 (buffers (buffer-list)))
76da020d14f8 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2177
diff changeset
1772 (while buffers
76da020d14f8 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2177
diff changeset
1773 (or (string-match "^ " (buffer-name (car buffers)))
76da020d14f8 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2177
diff changeset
1774 (setq count (1+ count)))
76da020d14f8 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2177
diff changeset
1775 (setq buffers (cdr buffers)))
93010
6bc37f1965b5 (kill-this-buffer): Use menu-bar-non-minibuffer-window-p
Juri Linkov <juri@jurta.org>
parents: 92948
diff changeset
1776 (or (not (menu-bar-non-minibuffer-window-p))
6bc37f1965b5 (kill-this-buffer): Use menu-bar-non-minibuffer-window-p
Juri Linkov <juri@jurta.org>
parents: 92948
diff changeset
1777 (> count 1))))
11525
3bd7735bba9b Disable many Files menu items in minibuffer.
Richard M. Stallman <rms@gnu.org>
parents: 11325
diff changeset
1778
65404
b50dda01c73d (menu-bar-menu-frame-live-and-visible-p)
Eli Zaretskii <eliz@gnu.org>
parents: 65399
diff changeset
1779 (put 'dired 'menu-enable '(menu-bar-non-minibuffer-window-p))
11525
3bd7735bba9b Disable many Files menu items in minibuffer.
Richard M. Stallman <rms@gnu.org>
parents: 11325
diff changeset
1780
4337
cda282328afd (delete-frame): Permit it, if > 1 frame is vis or iconic.
Richard M. Stallman <rms@gnu.org>
parents: 4160
diff changeset
1781 ;; Permit deleting frame if it would leave a visible or iconified frame.
11891
937c7fced6ee (delete-frame-enabled-p): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents: 11753
diff changeset
1782 (defun delete-frame-enabled-p ()
937c7fced6ee (delete-frame-enabled-p): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents: 11753
diff changeset
1783 "Return non-nil if `delete-frame' should be enabled in the menu bar."
937c7fced6ee (delete-frame-enabled-p): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents: 11753
diff changeset
1784 (let ((frames (frame-list))
15471
f0b473ee47a5 Whitespace change.
Richard M. Stallman <rms@gnu.org>
parents: 14792
diff changeset
1785 (count 0))
f0b473ee47a5 Whitespace change.
Richard M. Stallman <rms@gnu.org>
parents: 14792
diff changeset
1786 (while frames
f0b473ee47a5 Whitespace change.
Richard M. Stallman <rms@gnu.org>
parents: 14792
diff changeset
1787 (if (frame-visible-p (car frames))
f0b473ee47a5 Whitespace change.
Richard M. Stallman <rms@gnu.org>
parents: 14792
diff changeset
1788 (setq count (1+ count)))
f0b473ee47a5 Whitespace change.
Richard M. Stallman <rms@gnu.org>
parents: 14792
diff changeset
1789 (setq frames (cdr frames)))
f0b473ee47a5 Whitespace change.
Richard M. Stallman <rms@gnu.org>
parents: 14792
diff changeset
1790 (> count 1)))
2178
76da020d14f8 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2177
diff changeset
1791
17665
b11021ca3525 Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17615
diff changeset
1792 (defcustom yank-menu-length 20
100171
d42aff5ca541 * align.el:
Lute Kamstra <lute@gnu.org>
parents: 99787
diff changeset
1793 "Maximum length to display in the yank-menu."
17665
b11021ca3525 Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17615
diff changeset
1794 :type 'integer
94264
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1795 :group 'menu)
3795
d59af8c9bc65 (mouse-menu-choose-yank): New function. Put it in the edit menu.
Richard M. Stallman <rms@gnu.org>
parents: 3504
diff changeset
1796
8767
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1797 (defun menu-bar-update-yank-menu (string old)
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1798 (let ((front (car (cdr yank-menu)))
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1799 (menu-string (if (<= (length string) yank-menu-length)
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1800 string
10590
9f68d8d6357b (menu-bar-update-yank-menu): If string is too long,
Richard M. Stallman <rms@gnu.org>
parents: 9667
diff changeset
1801 (concat
9f68d8d6357b (menu-bar-update-yank-menu): If string is too long,
Richard M. Stallman <rms@gnu.org>
parents: 9667
diff changeset
1802 (substring string 0 (/ yank-menu-length 2))
9f68d8d6357b (menu-bar-update-yank-menu): If string is too long,
Richard M. Stallman <rms@gnu.org>
parents: 9667
diff changeset
1803 "..."
9f68d8d6357b (menu-bar-update-yank-menu): If string is too long,
Richard M. Stallman <rms@gnu.org>
parents: 9667
diff changeset
1804 (substring string (- (/ yank-menu-length 2)))))))
12610
2e1cc7fae2ba (menu-bar-update-yank-menu): Treat all-dashes specially.
Richard M. Stallman <rms@gnu.org>
parents: 12588
diff changeset
1805 ;; Don't let the menu string be all dashes
2e1cc7fae2ba (menu-bar-update-yank-menu): Treat all-dashes specially.
Richard M. Stallman <rms@gnu.org>
parents: 12588
diff changeset
1806 ;; because that has a special meaning in a menu.
2e1cc7fae2ba (menu-bar-update-yank-menu): Treat all-dashes specially.
Richard M. Stallman <rms@gnu.org>
parents: 12588
diff changeset
1807 (if (string-match "\\`-+\\'" menu-string)
2e1cc7fae2ba (menu-bar-update-yank-menu): Treat all-dashes specially.
Richard M. Stallman <rms@gnu.org>
parents: 12588
diff changeset
1808 (setq menu-string (concat menu-string " ")))
8767
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1809 ;; If we're supposed to be extending an existing string, and that
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1810 ;; string really is at the front of the menu, then update it in place.
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1811 (if (and old (or (eq old (car front))
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1812 (string= old (car front))))
3942
877f540d9717 (mouse-menu-choose-yank): Just return when x-popup-menu returns nil.
Roland McGrath <roland@gnu.org>
parents: 3898
diff changeset
1813 (progn
8767
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1814 (setcar front string)
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1815 (setcar (cdr front) menu-string))
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1816 (setcdr yank-menu
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1817 (cons
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1818 (cons string (cons menu-string 'menu-bar-select-yank))
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1819 (cdr yank-menu)))))
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1820 (if (> (length (cdr yank-menu)) kill-ring-max)
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1821 (setcdr (nthcdr kill-ring-max yank-menu) nil)))
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1822
20481
77ed0446c90a (menu-bar-select-yank): Add apropos-inhibit property.
Richard M. Stallman <rms@gnu.org>
parents: 20342
diff changeset
1823 (put 'menu-bar-select-yank 'apropos-inhibit t)
8767
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1824 (defun menu-bar-select-yank ()
68797
9257a489f3e6 (menu-bar-select-yank): Add a doc string.
Eli Zaretskii <eliz@gnu.org>
parents: 68651
diff changeset
1825 "Insert the stretch of previously-killed text selected from menu.
9257a489f3e6 (menu-bar-select-yank): Add a doc string.
Eli Zaretskii <eliz@gnu.org>
parents: 68651
diff changeset
1826 The menu shows all the killed text sequences stored in `kill-ring'."
8767
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1827 (interactive "*")
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1828 (push-mark (point))
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1829 (insert last-command-event))
44803
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1830
2181
5a9d9dcc4750 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2178
diff changeset
1831
94264
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1832 ;;; Buffers Menu
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1833
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1834 (defcustom buffers-menu-max-size 10
100171
d42aff5ca541 * align.el:
Lute Kamstra <lute@gnu.org>
parents: 99787
diff changeset
1835 "Maximum number of entries which may appear on the Buffers menu.
94264
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1836 If this is 10, then only the ten most-recently-selected buffers are shown.
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1837 If this is nil, then all buffers are shown.
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1838 A large number or nil slows down menu responsiveness."
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1839 :type '(choice integer
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1840 (const :tag "All" nil))
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1841 :group 'menu)
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1842
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1843 (defcustom buffers-menu-buffer-name-length 30
100171
d42aff5ca541 * align.el:
Lute Kamstra <lute@gnu.org>
parents: 99787
diff changeset
1844 "Maximum length of the buffer name on the Buffers menu.
94264
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1845 If this is a number, then buffer names are truncated to this length.
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1846 If this is nil, then buffer names are shown in full.
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1847 A large number or nil makes the menu too wide."
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1848 :type '(choice integer
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1849 (const :tag "Full length" nil))
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1850 :group 'menu)
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1851
44803
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1852 (defcustom buffers-menu-show-directories 'unless-uniquify
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1853 "If non-nil, show directories in the Buffers menu for buffers that have them.
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1854 The special value `unless-uniquify' means that directories will be shown
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1855 unless `uniquify-buffer-name-style' is non-nil (in which case, buffer
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1856 names should include enough of a buffer's directory to distinguish it
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1857 from other buffers).
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1858
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1859 Setting this variable directly does not take effect until next time the
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1860 Buffers menu is regenerated."
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1861 :set (lambda (symbol value)
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1862 (set symbol value)
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1863 (menu-bar-update-buffers t))
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1864 :initialize 'custom-initialize-default
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1865 :type '(choice (const :tag "Never" nil)
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1866 (const :tag "Unless uniquify is enabled" unless-uniquify)
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1867 (const :tag "Always" t))
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1868 :group 'menu)
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1869
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1870 (defcustom buffers-menu-show-status t
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1871 "If non-nil, show modified/read-only status of buffers in the Buffers menu.
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1872 Setting this variable directly does not take effect until next time the
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1873 Buffers menu is regenerated."
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1874 :set (lambda (symbol value)
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1875 (set symbol value)
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1876 (menu-bar-update-buffers t))
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1877 :initialize 'custom-initialize-default
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1878 :type 'boolean
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1879 :group 'menu)
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1880
105196
d991506f9286 * menu-bar.el (list-buffers-directory): Add docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 105058
diff changeset
1881 (defvar list-buffers-directory nil
105202
8dadc895b795 * menu-bar.el (list-buffers-directory): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents: 105196
diff changeset
1882 "String to display in buffer listings for buffers not visiting a file.")
105196
d991506f9286 * menu-bar.el (list-buffers-directory): Add docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 105058
diff changeset
1883 (make-variable-buffer-local 'list-buffers-directory)
4628
e55cc9fdaa92 (list-buffers-directory): Add declaration.
Richard M. Stallman <rms@gnu.org>
parents: 4603
diff changeset
1884
95059
4ce13b37e978 menu-bar-select-buffer: Reinsert it as msb.el use it.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 94678
diff changeset
1885 (defun menu-bar-select-buffer ()
4ce13b37e978 menu-bar-select-buffer: Reinsert it as msb.el use it.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 94678
diff changeset
1886 (interactive)
4ce13b37e978 menu-bar-select-buffer: Reinsert it as msb.el use it.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 94678
diff changeset
1887 (switch-to-buffer last-command-event))
4ce13b37e978 menu-bar-select-buffer: Reinsert it as msb.el use it.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 94678
diff changeset
1888
92745
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1889 (defun menu-bar-select-frame (frame)
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1890 (make-frame-visible frame)
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1891 (raise-frame frame)
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1892 (select-frame frame))
7150
b78bfe054561 Make a sub-keymap for the Buffers menu bar item.
Richard M. Stallman <rms@gnu.org>
parents: 6948
diff changeset
1893
9518
69072971d37e (menu-bar-update-buffers-1): New subroutine
Richard M. Stallman <rms@gnu.org>
parents: 9422
diff changeset
1894 (defun menu-bar-update-buffers-1 (elt)
44776
f2802fbc2d65 (menu-bar-update-buffers-1): Don't display a directory separator if
Miles Bader <miles@gnu.org>
parents: 44770
diff changeset
1895 (let* ((buf (car elt))
f2802fbc2d65 (menu-bar-update-buffers-1): Don't display a directory separator if
Miles Bader <miles@gnu.org>
parents: 44770
diff changeset
1896 (file
44803
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1897 (and (if (eq buffers-menu-show-directories 'unless-uniquify)
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1898 (or (not (boundp 'uniquify-buffer-name-style))
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1899 (null uniquify-buffer-name-style))
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1900 buffers-menu-show-directories)
44776
f2802fbc2d65 (menu-bar-update-buffers-1): Don't display a directory separator if
Miles Bader <miles@gnu.org>
parents: 44770
diff changeset
1901 (or (buffer-file-name buf)
44803
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1902 (buffer-local-value 'list-buffers-directory buf)))))
44776
f2802fbc2d65 (menu-bar-update-buffers-1): Don't display a directory separator if
Miles Bader <miles@gnu.org>
parents: 44770
diff changeset
1903 (when file
f2802fbc2d65 (menu-bar-update-buffers-1): Don't display a directory separator if
Miles Bader <miles@gnu.org>
parents: 44770
diff changeset
1904 (setq file (file-name-directory file)))
f2802fbc2d65 (menu-bar-update-buffers-1): Don't display a directory separator if
Miles Bader <miles@gnu.org>
parents: 44770
diff changeset
1905 (when (and file (> (length file) 20))
f2802fbc2d65 (menu-bar-update-buffers-1): Don't display a directory separator if
Miles Bader <miles@gnu.org>
parents: 44770
diff changeset
1906 (setq file (concat "..." (substring file -17))))
44803
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1907 (cons (if buffers-menu-show-status
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1908 (let ((mod (if (buffer-modified-p buf) "*" ""))
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1909 (ro (if (buffer-local-value 'buffer-read-only buf) "%" "")))
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1910 (if file
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1911 (format "%s %s%s -- %s" (cdr elt) mod ro file)
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1912 (format "%s %s%s" (cdr elt) mod ro)))
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1913 (if file
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1914 (format "%s -- %s" (cdr elt) file)
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1915 (cdr elt)))
44776
f2802fbc2d65 (menu-bar-update-buffers-1): Don't display a directory separator if
Miles Bader <miles@gnu.org>
parents: 44770
diff changeset
1916 buf)))
f2802fbc2d65 (menu-bar-update-buffers-1): Don't display a directory separator if
Miles Bader <miles@gnu.org>
parents: 44770
diff changeset
1917
44770
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
1918 ;; Used to cache the menu entries for commands in the Buffers menu
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
1919 (defvar menu-bar-buffers-menu-command-entries nil)
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
1920
36230
56577cf3e384 (menu-bar-update-buffers): Add optional parameter
Gerd Moellmann <gerd@gnu.org>
parents: 36072
diff changeset
1921 (defun menu-bar-update-buffers (&optional force)
8316
abf26f5c67e4 (menu-bar-update-buffers): If Buffers item is gone,
Richard M. Stallman <rms@gnu.org>
parents: 8229
diff changeset
1922 ;; If user discards the Buffers item, play along.
8347
0fff2106fa43 (menu-bar-update-buffers): Use (current-global-map), not global-map.
Richard M. Stallman <rms@gnu.org>
parents: 8320
diff changeset
1923 (and (lookup-key (current-global-map) [menu-bar buffer])
36230
56577cf3e384 (menu-bar-update-buffers): Add optional parameter
Gerd Moellmann <gerd@gnu.org>
parents: 36072
diff changeset
1924 (or force (frame-or-buffer-changed-p))
8316
abf26f5c67e4 (menu-bar-update-buffers): If Buffers item is gone,
Richard M. Stallman <rms@gnu.org>
parents: 8229
diff changeset
1925 (let ((buffers (buffer-list))
abf26f5c67e4 (menu-bar-update-buffers): If Buffers item is gone,
Richard M. Stallman <rms@gnu.org>
parents: 8229
diff changeset
1926 (frames (frame-list))
79167
cc88b3f9bb72 (global-buffers-menu-map): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78894
diff changeset
1927 buffers-menu)
8316
abf26f5c67e4 (menu-bar-update-buffers): If Buffers item is gone,
Richard M. Stallman <rms@gnu.org>
parents: 8229
diff changeset
1928 ;; If requested, list only the N most recently selected buffers.
abf26f5c67e4 (menu-bar-update-buffers): If Buffers item is gone,
Richard M. Stallman <rms@gnu.org>
parents: 8229
diff changeset
1929 (if (and (integerp buffers-menu-max-size)
abf26f5c67e4 (menu-bar-update-buffers): If Buffers item is gone,
Richard M. Stallman <rms@gnu.org>
parents: 8229
diff changeset
1930 (> buffers-menu-max-size 1))
abf26f5c67e4 (menu-bar-update-buffers): If Buffers item is gone,
Richard M. Stallman <rms@gnu.org>
parents: 8229
diff changeset
1931 (if (> (length buffers) buffers-menu-max-size)
abf26f5c67e4 (menu-bar-update-buffers): If Buffers item is gone,
Richard M. Stallman <rms@gnu.org>
parents: 8229
diff changeset
1932 (setcdr (nthcdr buffers-menu-max-size buffers) nil)))
7150
b78bfe054561 Make a sub-keymap for the Buffers menu bar item.
Richard M. Stallman <rms@gnu.org>
parents: 6948
diff changeset
1933
8316
abf26f5c67e4 (menu-bar-update-buffers): If Buffers item is gone,
Richard M. Stallman <rms@gnu.org>
parents: 8229
diff changeset
1934 ;; Make the menu of buffers proper.
abf26f5c67e4 (menu-bar-update-buffers): If Buffers item is gone,
Richard M. Stallman <rms@gnu.org>
parents: 8229
diff changeset
1935 (setq buffers-menu
92745
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1936 (let (alist)
44768
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1937 ;; Put into each element of buffer-list
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1938 ;; the name for actual display,
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1939 ;; perhaps truncated in the middle.
92745
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1940 (dolist (buf buffers)
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1941 (let ((name (buffer-name buf)))
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1942 (unless (eq ?\s (aref name 0))
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1943 (push (menu-bar-update-buffers-1
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1944 (cons buf
94264
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1945 (if (and (integerp buffers-menu-buffer-name-length)
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1946 (> (length name) buffers-menu-buffer-name-length))
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1947 (concat
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1948 (substring
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1949 name 0 (/ buffers-menu-buffer-name-length 2))
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1950 "..."
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1951 (substring
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1952 name (- (/ buffers-menu-buffer-name-length 2))))
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1953 name)
6d96ac31f7cd (buffers-menu-max-size): Move its definition down to
Juri Linkov <juri@jurta.org>
parents: 93962
diff changeset
1954 ))
92745
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1955 alist))))
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1956 ;; Now make the actual list of items.
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1957 (let ((buffers-vec (make-vector (length alist) nil))
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1958 (i (length alist)))
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1959 (dolist (pair alist)
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1960 (setq i (1- i))
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1961 (aset buffers-vec i
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1962 (nconc (list (car pair)
44768
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1963 (cons nil nil))
92745
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1964 `(lambda ()
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1965 (interactive)
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1966 (switch-to-buffer ,(cdr pair))))))
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1967 (list buffers-vec))))
7239
385ac6718f28 (menu-bar-update-buffers): Fix misspelled variable.
Karl Heuer <kwzh@gnu.org>
parents: 7234
diff changeset
1968
8316
abf26f5c67e4 (menu-bar-update-buffers): If Buffers item is gone,
Richard M. Stallman <rms@gnu.org>
parents: 8229
diff changeset
1969 ;; Make a Frames menu if we have more than one frame.
44768
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1970 (when (cdr frames)
92745
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1971 (let* ((frames-vec (make-vector (length frames) nil))
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1972 (frames-menu
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1973 (cons 'keymap
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1974 (list "Select Frame" frames-vec)))
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1975 (i 0))
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1976 (dolist (frame frames)
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1977 (aset frames-vec i
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1978 (nconc
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1979 (list
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1980 (frame-parameter frame 'name)
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1981 (cons nil nil))
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1982 `(lambda ()
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1983 (interactive) (menu-bar-select-frame ,frame))))
871ad7e118ff (menu-bar-update-buffers-maxbuf): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92350
diff changeset
1984 (setq i (1+ i)))
44768
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1985 ;; Put it after the normal buffers
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1986 (setq buffers-menu
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1987 (nconc buffers-menu
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1988 `((frames-separator "--")
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1989 (frames menu-item "Frames" ,frames-menu))))))
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1990
44770
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
1991 ;; Add in some normal commands at the end of the menu. We use
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
1992 ;; the copy cached in `menu-bar-buffers-menu-command-entries'
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
1993 ;; if it's been set already. Note that we can't use constant
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
1994 ;; lists for the menu-entries, because the low-level menu-code
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
1995 ;; modifies them.
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
1996 (unless menu-bar-buffers-menu-command-entries
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
1997 (setq menu-bar-buffers-menu-command-entries
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
1998 (list '(command-separator "--")
44907
5e84d4496348 (menu-bar-update-buffers): Add menu items Next Buffer and Previous Buffer.
Richard M. Stallman <rms@gnu.org>
parents: 44817
diff changeset
1999 (list 'next-buffer
5e84d4496348 (menu-bar-update-buffers): Add menu items Next Buffer and Previous Buffer.
Richard M. Stallman <rms@gnu.org>
parents: 44817
diff changeset
2000 'menu-item
5e84d4496348 (menu-bar-update-buffers): Add menu items Next Buffer and Previous Buffer.
Richard M. Stallman <rms@gnu.org>
parents: 44817
diff changeset
2001 "Next Buffer"
5e84d4496348 (menu-bar-update-buffers): Add menu items Next Buffer and Previous Buffer.
Richard M. Stallman <rms@gnu.org>
parents: 44817
diff changeset
2002 'next-buffer
5e84d4496348 (menu-bar-update-buffers): Add menu items Next Buffer and Previous Buffer.
Richard M. Stallman <rms@gnu.org>
parents: 44817
diff changeset
2003 :help "Switch to the \"next\" buffer in a cyclic order")
67602
3fbbf35e6d87 2005-12-16 L«Örentey K«¡roly <lorentey@elte.hu>
Károly Lőrentey <lorentey@elte.hu>
parents: 67550
diff changeset
2004 (list 'previous-buffer
44907
5e84d4496348 (menu-bar-update-buffers): Add menu items Next Buffer and Previous Buffer.
Richard M. Stallman <rms@gnu.org>
parents: 44817
diff changeset
2005 'menu-item
5e84d4496348 (menu-bar-update-buffers): Add menu items Next Buffer and Previous Buffer.
Richard M. Stallman <rms@gnu.org>
parents: 44817
diff changeset
2006 "Previous Buffer"
67602
3fbbf35e6d87 2005-12-16 L«Örentey K«¡roly <lorentey@elte.hu>
Károly Lőrentey <lorentey@elte.hu>
parents: 67550
diff changeset
2007 'previous-buffer
44907
5e84d4496348 (menu-bar-update-buffers): Add menu items Next Buffer and Previous Buffer.
Richard M. Stallman <rms@gnu.org>
parents: 44817
diff changeset
2008 :help "Switch to the \"previous\" buffer in a cyclic order")
44770
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
2009 (list 'select-named-buffer
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
2010 'menu-item
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
2011 "Select Named Buffer..."
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
2012 'switch-to-buffer
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
2013 :help "Prompt for a buffer name, and select that buffer in the current window")
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
2014 (list 'list-all-buffers
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
2015 'menu-item
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
2016 "List All Buffers"
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
2017 'list-buffers
73757
ee652b7f0ef4 (menu-bar-update-buffers): Fix typo in help menu entry.
Juanma Barranquero <lekktu@gmail.com>
parents: 73005
diff changeset
2018 :help "Pop up a window listing all Emacs buffers"
44770
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
2019 ))))
44768
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
2020 (setq buffers-menu
44770
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
2021 (nconc buffers-menu menu-bar-buffers-menu-command-entries))
44768
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
2022
79167
cc88b3f9bb72 (global-buffers-menu-map): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78894
diff changeset
2023 ;; We used to "(define-key (current-global-map) [menu-bar buffer]"
cc88b3f9bb72 (global-buffers-menu-map): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78894
diff changeset
2024 ;; but that did not do the right thing when the [menu-bar buffer]
cc88b3f9bb72 (global-buffers-menu-map): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78894
diff changeset
2025 ;; entry above had been moved (e.g. to a parent keymap).
cc88b3f9bb72 (global-buffers-menu-map): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78894
diff changeset
2026 (setcdr global-buffers-menu-map (cons "Select Buffer" buffers-menu)))))
2181
5a9d9dcc4750 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2178
diff changeset
2027
7150
b78bfe054561 Make a sub-keymap for the Buffers menu bar item.
Richard M. Stallman <rms@gnu.org>
parents: 6948
diff changeset
2028 (add-hook 'menu-bar-update-hook 'menu-bar-update-buffers)
2181
5a9d9dcc4750 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2178
diff changeset
2029
12633
c05399b944ab (menu-bar-buffer-menu): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents: 12610
diff changeset
2030 (menu-bar-update-buffers)
c05399b944ab (menu-bar-buffer-menu): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents: 12610
diff changeset
2031
2181
5a9d9dcc4750 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2178
diff changeset
2032 ;; this version is too slow
47421
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
2033 ;;(defun format-buffers-menu-line (buffer)
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
2034 ;; "Returns a string to represent the given buffer in the Buffer menu.
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
2035 ;;nil means the buffer shouldn't be listed. You can redefine this."
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
2036 ;; (if (string-match "\\` " (buffer-name buffer))
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
2037 ;; nil
105994
009383a57ce8 * x-dnd.el (x-dnd-maybe-call-test-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105940
diff changeset
2038 ;; (with-current-buffer buffer
47421
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
2039 ;; (let ((size (buffer-size)))
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
2040 ;; (format "%s%s %-19s %6s %-15s %s"
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
2041 ;; (if (buffer-modified-p) "*" " ")
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
2042 ;; (if buffer-read-only "%" " ")
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
2043 ;; (buffer-name)
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
2044 ;; size
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
2045 ;; mode-name
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
2046 ;; (or (buffer-file-name) ""))))))
2181
5a9d9dcc4750 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2178
diff changeset
2047
12427
04bcad1807b9 Make more menu-enables check (not buffer-read-only).
Richard M. Stallman <rms@gnu.org>
parents: 12199
diff changeset
2048 ;;; Set up a menu bar menu for the minibuffer.
04bcad1807b9 Make more menu-enables check (not buffer-read-only).
Richard M. Stallman <rms@gnu.org>
parents: 12199
diff changeset
2049
39844
0433563f559d (minibuffer-local-*map): Take inheritance into account.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39393
diff changeset
2050 (dolist (map (list minibuffer-local-map
0433563f559d (minibuffer-local-*map): Take inheritance into account.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39393
diff changeset
2051 ;; This shouldn't be necessary, but there's a funny
0433563f559d (minibuffer-local-*map): Take inheritance into account.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39393
diff changeset
2052 ;; bug in keymap.c that I don't understand yet. -stef
33191
ca52130472e7 (minibuffer maps): Use dolist rather than mapcar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 32932
diff changeset
2053 minibuffer-local-completion-map))
ca52130472e7 (minibuffer maps): Use dolist rather than mapcar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 32932
diff changeset
2054 (define-key map [menu-bar minibuf]
105715
6b8dce5c4461 * puresize.h (BASE_PURESIZE): Increase to 1430000.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105619
diff changeset
2055 (cons (purecopy "Minibuf") (make-sparse-keymap "Minibuf"))))
12427
04bcad1807b9 Make more menu-enables check (not buffer-read-only).
Richard M. Stallman <rms@gnu.org>
parents: 12199
diff changeset
2056
39844
0433563f559d (minibuffer-local-*map): Take inheritance into account.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39393
diff changeset
2057 (let ((map minibuffer-local-completion-map))
33191
ca52130472e7 (minibuffer maps): Use dolist rather than mapcar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 32932
diff changeset
2058 (define-key map [menu-bar minibuf ?\?]
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
2059 `(menu-item ,(purecopy "List Completions") minibuffer-completion-help
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
2060 :help ,(purecopy "Display all possible completions")))
33191
ca52130472e7 (minibuffer maps): Use dolist rather than mapcar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 32932
diff changeset
2061 (define-key map [menu-bar minibuf space]
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
2062 `(menu-item ,(purecopy "Complete Word") minibuffer-complete-word
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
2063 :help ,(purecopy "Complete at most one word")))
33191
ca52130472e7 (minibuffer maps): Use dolist rather than mapcar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 32932
diff changeset
2064 (define-key map [menu-bar minibuf tab]
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
2065 `(menu-item ,(purecopy "Complete") minibuffer-complete
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
2066 :help ,(purecopy "Complete as far as possible"))))
12427
04bcad1807b9 Make more menu-enables check (not buffer-read-only).
Richard M. Stallman <rms@gnu.org>
parents: 12199
diff changeset
2067
39844
0433563f559d (minibuffer-local-*map): Take inheritance into account.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39393
diff changeset
2068 (let ((map minibuffer-local-map))
33191
ca52130472e7 (minibuffer maps): Use dolist rather than mapcar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 32932
diff changeset
2069 (define-key map [menu-bar minibuf quit]
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
2070 `(menu-item ,(purecopy "Quit") abort-recursive-edit
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
2071 :help ,(purecopy "Abort input and exit minibuffer")))
33191
ca52130472e7 (minibuffer maps): Use dolist rather than mapcar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 32932
diff changeset
2072 (define-key map [menu-bar minibuf return]
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
2073 `(menu-item ,(purecopy "Enter") exit-minibuffer
105870
26baacb565b0 * textmodes/tex-mode.el (tex-alt-dvi-print-command)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105845
diff changeset
2074 :key-sequence ,(purecopy "\r")
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
2075 :help ,(purecopy "Terminate input and exit minibuffer")))
92310
0801285155e7 (menu-bar-search-menu, menu-bar-replace-menu): Capitalize "Tagged Files".
Juri Linkov <juri@jurta.org>
parents: 92130
diff changeset
2076 (define-key map [menu-bar minibuf isearch-forward]
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
2077 `(menu-item ,(purecopy "Isearch History Forward") isearch-forward
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
2078 :help ,(purecopy "Incrementally search minibuffer history forward")))
92310
0801285155e7 (menu-bar-search-menu, menu-bar-replace-menu): Capitalize "Tagged Files".
Juri Linkov <juri@jurta.org>
parents: 92130
diff changeset
2079 (define-key map [menu-bar minibuf isearch-backward]
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
2080 `(menu-item ,(purecopy "Isearch History Backward") isearch-backward
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
2081 :help ,(purecopy "Incrementally search minibuffer history backward")))
92310
0801285155e7 (menu-bar-search-menu, menu-bar-replace-menu): Capitalize "Tagged Files".
Juri Linkov <juri@jurta.org>
parents: 92130
diff changeset
2082 (define-key map [menu-bar minibuf next]
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
2083 `(menu-item ,(purecopy "Next History Item") next-history-element
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
2084 :help ,(purecopy "Put next minibuffer history element in the minibuffer")))
92310
0801285155e7 (menu-bar-search-menu, menu-bar-replace-menu): Capitalize "Tagged Files".
Juri Linkov <juri@jurta.org>
parents: 92130
diff changeset
2085 (define-key map [menu-bar minibuf previous]
105058
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
2086 `(menu-item ,(purecopy "Previous History Item") previous-history-element
27669cf921ef (menu-bar-search-menu, menu-bar-edit-menu)
Juri Linkov <juri@jurta.org>
parents: 105050
diff changeset
2087 :help ,(purecopy "Put previous minibuffer history element in the minibuffer"))))
12427
04bcad1807b9 Make more menu-enables check (not buffer-read-only).
Richard M. Stallman <rms@gnu.org>
parents: 12199
diff changeset
2088
49997
afcd12db0367 * startup.el (command-line): Call menu-bar-mode with 1 instead of t.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49935
diff changeset
2089 (define-minor-mode menu-bar-mode
3007
e41b3dc686bb (menu-bar-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 2847
diff changeset
2090 "Toggle display of a menu bar on each frame.
2847
01a46a8f1e1b (fill-region, kill-region, delete-region)
Richard M. Stallman <rms@gnu.org>
parents: 2765
diff changeset
2091 This command applies to all frames that exist and frames to be
01a46a8f1e1b (fill-region, kill-region, delete-region)
Richard M. Stallman <rms@gnu.org>
parents: 2765
diff changeset
2092 created in the future.
22665
c6d48e73123e (menu-bar-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 22655
diff changeset
2093 With a numeric argument, if the argument is positive,
c6d48e73123e (menu-bar-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 22655
diff changeset
2094 turn on menu bars; otherwise, turn off menu bars."
109058
2f0720afc474 Change default-frame-alist and menu/tool-bar-mode interaction (Bug#2249).
Chong Yidong <cyd@stupidchicken.com>
parents: 109026
diff changeset
2095 :init-value t
49997
afcd12db0367 * startup.el (command-line): Call menu-bar-mode with 1 instead of t.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49935
diff changeset
2096 :global t
111222
cdad894f9ed0 Remove duplicate Lisp definitions of define-minor-mode variables defined in C.
Glenn Morris <rgm@gnu.org>
parents: 111215
diff changeset
2097 ;; It's defined in C/cus-start, this stops the d-m-m macro defining it again.
cdad894f9ed0 Remove duplicate Lisp definitions of define-minor-mode variables defined in C.
Glenn Morris <rgm@gnu.org>
parents: 111215
diff changeset
2098 :variable menu-bar-mode
83496
f271076dab2d Fix toolbars on X frames when Emacs is started on a tty. (Reported by Richard Lewis.)
Karoly Lorentey <lorentey@elte.hu>
parents: 68797
diff changeset
2099
109058
2f0720afc474 Change default-frame-alist and menu/tool-bar-mode interaction (Bug#2249).
Chong Yidong <cyd@stupidchicken.com>
parents: 109026
diff changeset
2100 ;; Turn the menu-bars on all frames on or off.
2f0720afc474 Change default-frame-alist and menu/tool-bar-mode interaction (Bug#2249).
Chong Yidong <cyd@stupidchicken.com>
parents: 109026
diff changeset
2101 (let ((val (if menu-bar-mode 1 0)))
2f0720afc474 Change default-frame-alist and menu/tool-bar-mode interaction (Bug#2249).
Chong Yidong <cyd@stupidchicken.com>
parents: 109026
diff changeset
2102 (dolist (frame (frame-list))
109147
783986775ee8 Set default-frame-alist, if necessary, in menu/tool-bar-mode.
Chong Yidong <cyd@stupidchicken.com>
parents: 109058
diff changeset
2103 (set-frame-parameter frame 'menu-bar-lines val))
783986775ee8 Set default-frame-alist, if necessary, in menu/tool-bar-mode.
Chong Yidong <cyd@stupidchicken.com>
parents: 109058
diff changeset
2104 ;; If the user has given `default-frame-alist' a `menu-bar-lines'
783986775ee8 Set default-frame-alist, if necessary, in menu/tool-bar-mode.
Chong Yidong <cyd@stupidchicken.com>
parents: 109058
diff changeset
2105 ;; parameter, replace it.
783986775ee8 Set default-frame-alist, if necessary, in menu/tool-bar-mode.
Chong Yidong <cyd@stupidchicken.com>
parents: 109058
diff changeset
2106 (if (assq 'menu-bar-lines default-frame-alist)
783986775ee8 Set default-frame-alist, if necessary, in menu/tool-bar-mode.
Chong Yidong <cyd@stupidchicken.com>
parents: 109058
diff changeset
2107 (setq default-frame-alist
783986775ee8 Set default-frame-alist, if necessary, in menu/tool-bar-mode.
Chong Yidong <cyd@stupidchicken.com>
parents: 109058
diff changeset
2108 (cons (cons 'menu-bar-lines val)
783986775ee8 Set default-frame-alist, if necessary, in menu/tool-bar-mode.
Chong Yidong <cyd@stupidchicken.com>
parents: 109058
diff changeset
2109 (assq-delete-all 'menu-bar-lines
783986775ee8 Set default-frame-alist, if necessary, in menu/tool-bar-mode.
Chong Yidong <cyd@stupidchicken.com>
parents: 109058
diff changeset
2110 default-frame-alist)))))
49997
afcd12db0367 * startup.el (command-line): Call menu-bar-mode with 1 instead of t.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49935
diff changeset
2111 ;; Make the message appear when Emacs is idle. We can not call message
afcd12db0367 * startup.el (command-line): Call menu-bar-mode with 1 instead of t.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49935
diff changeset
2112 ;; directly. The minor-mode message "Menu-bar mode disabled" comes
afcd12db0367 * startup.el (command-line): Call menu-bar-mode with 1 instead of t.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49935
diff changeset
2113 ;; after this function returns, overwriting any message we do here.
105372
bd2966850aac Use `called-interactively-p' instead of `interactive-p'.
Juanma Barranquero <lekktu@gmail.com>
parents: 105235
diff changeset
2114 (when (and (called-interactively-p 'interactive) (not menu-bar-mode))
49997
afcd12db0367 * startup.el (command-line): Call menu-bar-mode with 1 instead of t.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49935
diff changeset
2115 (run-with-idle-timer 0 nil 'message
109147
783986775ee8 Set default-frame-alist, if necessary, in menu/tool-bar-mode.
Chong Yidong <cyd@stupidchicken.com>
parents: 109058
diff changeset
2116 "Menu-bar mode disabled. Use M-x menu-bar-mode to make the menu bar appear.")))
2485
c34bbe650160 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 2181
diff changeset
2117
110342
ba563485f83b Close bug#6211.
Glenn Morris <rgm@gnu.org>
parents: 109941
diff changeset
2118 ;;;###autoload
ba563485f83b Close bug#6211.
Glenn Morris <rgm@gnu.org>
parents: 109941
diff changeset
2119 ;; (This does not work right unless it comes after the above definition.)
ba563485f83b Close bug#6211.
Glenn Morris <rgm@gnu.org>
parents: 109941
diff changeset
2120 ;; This comment is taken from tool-bar.el near
ba563485f83b Close bug#6211.
Glenn Morris <rgm@gnu.org>
parents: 109941
diff changeset
2121 ;; (put 'tool-bar-mode ...)
ba563485f83b Close bug#6211.
Glenn Morris <rgm@gnu.org>
parents: 109941
diff changeset
2122 ;; We want to pretend the menu bar by standard is on, as this will make
ba563485f83b Close bug#6211.
Glenn Morris <rgm@gnu.org>
parents: 109941
diff changeset
2123 ;; customize consider disabling the menu bar a customization, and save
ba563485f83b Close bug#6211.
Glenn Morris <rgm@gnu.org>
parents: 109941
diff changeset
2124 ;; that. We could do this for real by setting :init-value above, but
ba563485f83b Close bug#6211.
Glenn Morris <rgm@gnu.org>
parents: 109941
diff changeset
2125 ;; that would overwrite disabling the menu bar from X resources.
ba563485f83b Close bug#6211.
Glenn Morris <rgm@gnu.org>
parents: 109941
diff changeset
2126 (put 'menu-bar-mode 'standard-value '(t))
ba563485f83b Close bug#6211.
Glenn Morris <rgm@gnu.org>
parents: 109941
diff changeset
2127
83497
a25bb5ef27bf Fix tool-bar and menu-bar toggles in Show/Hide menu to reflect the state of the current frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83496
diff changeset
2128 (defun toggle-menu-bar-mode-from-frame (&optional arg)
a25bb5ef27bf Fix tool-bar and menu-bar toggles in Show/Hide menu to reflect the state of the current frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83496
diff changeset
2129 "Toggle menu bar on or off, based on the status of the current frame.
a25bb5ef27bf Fix tool-bar and menu-bar toggles in Show/Hide menu to reflect the state of the current frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83496
diff changeset
2130 See `menu-bar-mode' for more information."
a25bb5ef27bf Fix tool-bar and menu-bar toggles in Show/Hide menu to reflect the state of the current frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83496
diff changeset
2131 (interactive (list (or current-prefix-arg 'toggle)))
a25bb5ef27bf Fix tool-bar and menu-bar toggles in Show/Hide menu to reflect the state of the current frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83496
diff changeset
2132 (if (eq arg 'toggle)
111861
869f03cdb254 Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111262
diff changeset
2133 (menu-bar-mode
869f03cdb254 Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111262
diff changeset
2134 (if (menu-bar-positive-p
869f03cdb254 Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111262
diff changeset
2135 (frame-parameter (menu-bar-frame-for-menubar) 'menu-bar-lines))
869f03cdb254 Fix bug #1077 with popping new frames from a minibuffer-only frame.
Eli Zaretskii <eliz@gnu.org>
parents: 111262
diff changeset
2136 0 1))
83497
a25bb5ef27bf Fix tool-bar and menu-bar toggles in Show/Hide menu to reflect the state of the current frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83496
diff changeset
2137 (menu-bar-mode arg)))
a25bb5ef27bf Fix tool-bar and menu-bar toggles in Show/Hide menu to reflect the state of the current frame.
Karoly Lorentey <lorentey@elte.hu>
parents: 83496
diff changeset
2138
86322
b59436080a4c (x-menu-bar-open): Declare as function.
Juanma Barranquero <lekktu@gmail.com>
parents: 86275
diff changeset
2139 (declare-function x-menu-bar-open "term/x-win" (&optional frame))
95840
0e3c2e18b9c3 (w32-menu-bar-open): Declare for compiler.
Glenn Morris <rgm@gnu.org>
parents: 95804
diff changeset
2140 (declare-function w32-menu-bar-open "term/w32-win" (&optional frame))
86322
b59436080a4c (x-menu-bar-open): Declare as function.
Juanma Barranquero <lekktu@gmail.com>
parents: 86275
diff changeset
2141
83537
c19f348befac Fix F10 behaviour. (Reported by Bernard Adrian.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83530
diff changeset
2142 (defun menu-bar-open (&optional frame)
c19f348befac Fix F10 behaviour. (Reported by Bernard Adrian.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83530
diff changeset
2143 "Start key navigation of the menu bar in FRAME.
c19f348befac Fix F10 behaviour. (Reported by Bernard Adrian.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83530
diff changeset
2144
c19f348befac Fix F10 behaviour. (Reported by Bernard Adrian.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83530
diff changeset
2145 This function decides which method to use to access the menu
c19f348befac Fix F10 behaviour. (Reported by Bernard Adrian.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83530
diff changeset
2146 depending on FRAME's terminal device. On X displays, it calls
95804
ea2762d2d847 * term/w32-win.el (w32-menu-bar-open): Rename from menu-bar-open.
Jason Rumney <jasonr@gnu.org>
parents: 95797
diff changeset
2147 `x-menu-bar-open'; on Windows, `w32-menu-bar-open' otherwise it
ea2762d2d847 * term/w32-win.el (w32-menu-bar-open): Rename from menu-bar-open.
Jason Rumney <jasonr@gnu.org>
parents: 95797
diff changeset
2148 calls `tmm-menubar'.
83537
c19f348befac Fix F10 behaviour. (Reported by Bernard Adrian.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83530
diff changeset
2149
c19f348befac Fix F10 behaviour. (Reported by Bernard Adrian.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83530
diff changeset
2150 If FRAME is nil or not given, use the selected frame."
c19f348befac Fix F10 behaviour. (Reported by Bernard Adrian.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83530
diff changeset
2151 (interactive)
95804
ea2762d2d847 * term/w32-win.el (w32-menu-bar-open): Rename from menu-bar-open.
Jason Rumney <jasonr@gnu.org>
parents: 95797
diff changeset
2152 (let ((type (framep (or frame (selected-frame)))))
ea2762d2d847 * term/w32-win.el (w32-menu-bar-open): Rename from menu-bar-open.
Jason Rumney <jasonr@gnu.org>
parents: 95797
diff changeset
2153 (cond
ea2762d2d847 * term/w32-win.el (w32-menu-bar-open): Rename from menu-bar-open.
Jason Rumney <jasonr@gnu.org>
parents: 95797
diff changeset
2154 ((eq type 'x) (x-menu-bar-open frame))
ea2762d2d847 * term/w32-win.el (w32-menu-bar-open): Rename from menu-bar-open.
Jason Rumney <jasonr@gnu.org>
parents: 95797
diff changeset
2155 ((eq type 'w32) (w32-menu-bar-open frame))
ea2762d2d847 * term/w32-win.el (w32-menu-bar-open): Rename from menu-bar-open.
Jason Rumney <jasonr@gnu.org>
parents: 95797
diff changeset
2156 (t (with-selected-frame (or frame (selected-frame))
ea2762d2d847 * term/w32-win.el (w32-menu-bar-open): Rename from menu-bar-open.
Jason Rumney <jasonr@gnu.org>
parents: 95797
diff changeset
2157 (tmm-menubar))))))
83537
c19f348befac Fix F10 behaviour. (Reported by Bernard Adrian.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83530
diff changeset
2158
c19f348befac Fix F10 behaviour. (Reported by Bernard Adrian.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83530
diff changeset
2159 (global-set-key [f10] 'menu-bar-open)
c19f348befac Fix F10 behaviour. (Reported by Bernard Adrian.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83530
diff changeset
2160
2765
0eb1a195f56e Provide 'menu-bar.
Richard M. Stallman <rms@gnu.org>
parents: 2695
diff changeset
2161 (provide 'menu-bar)
0eb1a195f56e Provide 'menu-bar.
Richard M. Stallman <rms@gnu.org>
parents: 2695
diff changeset
2162
2488
278580be9b4a Added and corrected library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2485
diff changeset
2163 ;;; menu-bar.el ends here