annotate lisp/menu-bar.el @ 49935:78bf19f4f12c

(Revert Buffer): Condition on buffer-file-number.
author Richard M. Stallman <rms@gnu.org>
date Sun, 23 Feb 2003 15:17:29 +0000
parents e88404e8f2cf
children afcd12db0367
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
42992
371d09bc88ab (menu-bar-scroll-bar-right)
Pavel Janík <Pavel@Janik.cz>
parents: 41925
diff changeset
3 ;; Copyright (C) 1993, 1994, 1995, 2000, 2001, 2002 Free Software Foundation, Inc.
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13871
diff changeset
4
2488
278580be9b4a Added and corrected library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2485
diff changeset
5 ;; Author: RMS
17970
720d1f98ae42 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 17696
diff changeset
6 ;; Maintainer: FSF
31461
c613942bdf43 (menu-bar-options-menu): Fix the font-lock toggle.
Dave Love <fx@gnu.org>
parents: 31443
diff changeset
7 ;; Keywords: internal, mouse
2488
278580be9b4a Added and corrected library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2485
diff changeset
8
2485
c34bbe650160 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 2181
diff changeset
9 ;; This file is part of GNU Emacs.
c34bbe650160 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 2181
diff changeset
10
c34bbe650160 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 2181
diff changeset
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
c34bbe650160 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 2181
diff changeset
12 ;; it under the terms of the GNU General Public License as published by
c34bbe650160 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 2181
diff changeset
13 ;; the Free Software Foundation; either version 2, or (at your option)
c34bbe650160 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 2181
diff changeset
14 ;; any later version.
c34bbe650160 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 2181
diff changeset
15
c34bbe650160 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 2181
diff changeset
16 ;; 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
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
c34bbe650160 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 2181
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
c34bbe650160 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 2181
diff changeset
19 ;; GNU General Public License for more details.
c34bbe650160 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 2181
diff changeset
20
c34bbe650160 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 2181
diff changeset
21 ;; You should have received a copy of the GNU General Public License
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13871
diff changeset
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13871
diff changeset
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13871
diff changeset
24 ;; Boston, MA 02111-1307, USA.
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
13871
4b5161e903c1 (buffers-menu-max-size): Move definition to top of file.
Richard M. Stallman <rms@gnu.org>
parents: 13567
diff changeset
32 ;;; User options:
4b5161e903c1 (buffers-menu-max-size): Move definition to top of file.
Richard M. Stallman <rms@gnu.org>
parents: 13567
diff changeset
33
17665
b11021ca3525 Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17615
diff changeset
34 (defcustom buffers-menu-max-size 10
13871
4b5161e903c1 (buffers-menu-max-size): Move definition to top of file.
Richard M. Stallman <rms@gnu.org>
parents: 13567
diff changeset
35 "*Maximum number of entries which may appear on the Buffers menu.
4b5161e903c1 (buffers-menu-max-size): Move definition to top of file.
Richard M. Stallman <rms@gnu.org>
parents: 13567
diff changeset
36 If this is 10, then only the ten most-recently-selected buffers are shown.
4b5161e903c1 (buffers-menu-max-size): Move definition to top of file.
Richard M. Stallman <rms@gnu.org>
parents: 13567
diff changeset
37 If this is nil, then all buffers are shown.
17665
b11021ca3525 Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17615
diff changeset
38 A large number or nil slows down menu responsiveness."
b11021ca3525 Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17615
diff changeset
39 :type '(choice integer
b11021ca3525 Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17615
diff changeset
40 (const :tag "All" nil))
b11021ca3525 Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17615
diff changeset
41 :group 'mouse)
13871
4b5161e903c1 (buffers-menu-max-size): Move definition to top of file.
Richard M. Stallman <rms@gnu.org>
parents: 13567
diff changeset
42
4668
12289fa93455 Don't clobber existing binding for menu-bar in global-map.
Roland McGrath <roland@gnu.org>
parents: 4628
diff changeset
43 ;; 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
44 ;; 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
45 (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
46 (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
47 (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
48
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
49 ;; Force Help item to come last, after the major mode's own items.
12199
5f618eea1343 (help-menu): Symbol renamed from `help'.
Karl Heuer <kwzh@gnu.org>
parents: 12041
diff changeset
50 ;; The symbol used to be called `help', but that gets confused with the
5f618eea1343 (help-menu): Symbol renamed from `help'.
Karl Heuer <kwzh@gnu.org>
parents: 12041
diff changeset
51 ;; help key.
5f618eea1343 (help-menu): Symbol renamed from `help'.
Karl Heuer <kwzh@gnu.org>
parents: 12041
diff changeset
52 (setq menu-bar-final-items '(help-menu))
11067
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
53
12199
5f618eea1343 (help-menu): Symbol renamed from `help'.
Karl Heuer <kwzh@gnu.org>
parents: 12041
diff changeset
54 (define-key global-map [menu-bar help-menu] (cons "Help" menu-bar-help-menu))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
55 (defvar menu-bar-tools-menu (make-sparse-keymap "Tools"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
56 (define-key global-map [menu-bar tools] (cons "Tools" menu-bar-tools-menu))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
57 ;; This definition is just to show what this looks like.
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
58 ;; It gets overridden below when menu-bar-update-buffers is called.
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
59 (define-key global-map [menu-bar buffer]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
60 (cons "Buffers" (make-sparse-keymap "Buffers")))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
61 (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
62 (define-key global-map [menu-bar options]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
63 (cons "Options" menu-bar-options-menu))
3504
5fb4eefbd7ac (menu-bar-help-menu): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 3500
diff changeset
64 (defvar menu-bar-edit-menu (make-sparse-keymap "Edit"))
2178
76da020d14f8 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2177
diff changeset
65 (define-key global-map [menu-bar edit] (cons "Edit" menu-bar-edit-menu))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
66 (defvar menu-bar-files-menu (make-sparse-keymap "File"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
67 (define-key global-map [menu-bar files] (cons "File" menu-bar-files-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
68
d24be7d7af5d (menu-bar-file-menu): Add back as alias for menu-bar-files-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11235
diff changeset
69 ;; This alias is for compatibility with 19.28 and before.
d24be7d7af5d (menu-bar-file-menu): Add back as alias for menu-bar-files-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11235
diff changeset
70 (defvar menu-bar-file-menu menu-bar-files-menu)
44776
f2802fbc2d65 (menu-bar-update-buffers-1): Don't display a directory separator if
Miles Bader <miles@gnu.org>
parents: 44770
diff changeset
71
f2802fbc2d65 (menu-bar-update-buffers-1): Don't display a directory separator if
Miles Bader <miles@gnu.org>
parents: 44770
diff changeset
72 ;; 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
73 (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
74
8010
e199eda519b5 Rearrange the edit and file menus, and add separators.
Richard M. Stallman <rms@gnu.org>
parents: 7811
diff changeset
75
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
76 ;; The "File" menu items
11067
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
77 (define-key menu-bar-files-menu [exit-emacs]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
78 '(menu-item "Exit Emacs" save-buffers-kill-emacs
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
79 :help "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
80
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
81 (define-key menu-bar-files-menu [separator-exit]
8010
e199eda519b5 Rearrange the edit and file menus, and add separators.
Richard M. Stallman <rms@gnu.org>
parents: 7811
diff changeset
82 '("--"))
e199eda519b5 Rearrange the edit and file menus, and add separators.
Richard M. Stallman <rms@gnu.org>
parents: 7811
diff changeset
83
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
84 ;; 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
85 ;; event.
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
86 (define-key menu-bar-files-menu [delete-this-frame]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
87 '(menu-item "Delete Frame" delete-frame
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
88 :visible (fboundp 'delete-frame)
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
89 :enable (delete-frame-enabled-p)
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
90 :help "Delete currently selected frame"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
91 (define-key menu-bar-files-menu [make-frame-on-display]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
92 '(menu-item "New Frame on Display..." make-frame-on-display
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
93 :visible (fboundp 'make-frame-on-display)
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
94 :help "Open a new frame on another display"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
95 (define-key menu-bar-files-menu [make-frame]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
96 '(menu-item "New Frame" make-frame-command
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
97 :visible (fboundp 'make-frame-command)
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
98 :help "Open a new frame"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
99
11067
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
100 (define-key menu-bar-files-menu [one-window]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
101 '(menu-item "Unsplit Windows" delete-other-windows
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
102 :enable (not (one-window-p t nil))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
103 :help "Make selected window fill its frame"))
11067
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
104
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
105 (define-key menu-bar-files-menu [split-window]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
106 '(menu-item "Split Window" split-window-vertically
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
107 :help "Split selected window in two"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
108
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
109 (define-key menu-bar-files-menu [separator-window]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
110 '(menu-item "--"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
111
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
112 (define-key menu-bar-files-menu [ps-print-region]
35684
880d8ce810cc (menu-bar-files-menu): Add menu items for
Gerd Moellmann <gerd@gnu.org>
parents: 33191
diff changeset
113 '(menu-item "Postscript Print Region (B+W)" ps-print-region
880d8ce810cc (menu-bar-files-menu): Add menu items for
Gerd Moellmann <gerd@gnu.org>
parents: 33191
diff changeset
114 :enable mark-active
880d8ce810cc (menu-bar-files-menu): Add menu items for
Gerd Moellmann <gerd@gnu.org>
parents: 33191
diff changeset
115 :help "Pretty-print marked region in black and white to PostScript printer"))
880d8ce810cc (menu-bar-files-menu): Add menu items for
Gerd Moellmann <gerd@gnu.org>
parents: 33191
diff changeset
116 (define-key menu-bar-files-menu [ps-print-buffer]
880d8ce810cc (menu-bar-files-menu): Add menu items for
Gerd Moellmann <gerd@gnu.org>
parents: 33191
diff changeset
117 '(menu-item "Postscript Print Buffer (B+W)" ps-print-buffer
880d8ce810cc (menu-bar-files-menu): Add menu items for
Gerd Moellmann <gerd@gnu.org>
parents: 33191
diff changeset
118 :help "Pretty-print current buffer in black and white to PostScript printer"))
880d8ce810cc (menu-bar-files-menu): Add menu items for
Gerd Moellmann <gerd@gnu.org>
parents: 33191
diff changeset
119 (define-key menu-bar-files-menu [ps-print-region-faces]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
120 '(menu-item "Postscript Print Region" ps-print-region-with-faces
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
121 :enable mark-active
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
122 :help "Pretty-print marked region to PostScript printer"))
35684
880d8ce810cc (menu-bar-files-menu): Add menu items for
Gerd Moellmann <gerd@gnu.org>
parents: 33191
diff changeset
123 (define-key menu-bar-files-menu [ps-print-buffer-faces]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
124 '(menu-item "Postscript Print Buffer" ps-print-buffer-with-faces
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
125 :help "Pretty-print current buffer to PostScript printer"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
126 (define-key menu-bar-files-menu [print-region]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
127 '(menu-item "Print Region" print-region
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
128 :enable mark-active
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
129 :help "Print region between mark and current position"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
130 (define-key menu-bar-files-menu [print-buffer]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
131 '(menu-item "Print Buffer" print-buffer
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
132 :help "Print current buffer with page headings"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
133
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
134 (define-key menu-bar-files-menu [separator-print]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
135 '(menu-item "--"))
8010
e199eda519b5 Rearrange the edit and file menus, and add separators.
Richard M. Stallman <rms@gnu.org>
parents: 7811
diff changeset
136
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
137 (define-key menu-bar-files-menu [recover-session]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
138 '(menu-item "Recover Crashed Session..." recover-session
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
139 :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
140 (file-directory-p
b3f8b3df8d4f (menu-bar-files-menu [recover-session]): Make sure auto save directory
Noah Friedman <friedman@splode.com>
parents: 29968
diff changeset
141 (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
142 (directory-files
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
143 (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
144 nil
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
145 (concat "\\`"
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
146 (regexp-quote
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
147 (file-name-nondirectory
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
148 auto-save-list-file-prefix)))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
149 t))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
150 :help "Recover edits from a crashed session"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
151 (define-key menu-bar-files-menu [revert-buffer]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
152 '(menu-item "Revert Buffer" revert-buffer
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
153 :enable (or revert-buffer-function
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
154 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
155 (and buffer-file-number
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
156 (or (buffer-modified-p)
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
157 (not (verify-visited-file-modtime
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
158 (current-buffer))))))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
159 :help "Re-read current buffer from its file"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
160 (define-key menu-bar-files-menu [write-file]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
161 '(menu-item "Save Buffer As..." write-file
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
162 :enable (not (window-minibuffer-p
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
163 (frame-selected-window menu-updating-frame)))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
164 :help "Write current buffer to another file"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
165 (define-key menu-bar-files-menu [save-buffer]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
166 '(menu-item "Save (current buffer)" save-buffer
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
167 :enable (and (buffer-modified-p)
31645
0d9e6ed2718b (menu-bar-files-menu): Disable ``Save'' if
Gerd Moellmann <gerd@gnu.org>
parents: 31471
diff changeset
168 (buffer-file-name)
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
169 (not (window-minibuffer-p
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
170 (frame-selected-window menu-updating-frame))))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
171 :help "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
172
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
173 (define-key menu-bar-files-menu [separator-save]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
174 '(menu-item "--"))
8010
e199eda519b5 Rearrange the edit and file menus, and add separators.
Richard M. Stallman <rms@gnu.org>
parents: 7811
diff changeset
175
11067
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
176 (define-key menu-bar-files-menu [kill-buffer]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
177 '(menu-item "Close (current buffer)" kill-this-buffer
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
178 :enable (kill-this-buffer-enabled-p)
32932
dcf315209a36 Modify some menu item help strings.
Dave Love <fx@gnu.org>
parents: 32876
diff changeset
179 :help "Discard current buffer"))
11067
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
180 (define-key menu-bar-files-menu [insert-file]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
181 '(menu-item "Insert File..." insert-file
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
182 :enable (not (window-minibuffer-p
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
183 (frame-selected-window menu-updating-frame)))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
184 :help "Insert another file into current buffer"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
185 (define-key menu-bar-files-menu [dired]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
186 '(menu-item "Open Directory..." dired
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
187 :help "Read a directory, operate on its files"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
188 (define-key menu-bar-files-menu [open-file]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
189 '(menu-item "Open File..." find-file
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
190 :enable (not (window-minibuffer-p
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
191 (frame-selected-window menu-updating-frame)))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
192 :help "Read a file into an Emacs buffer"))
8525
fcc070bca96d (menu-bar-file-menu): Compare Files renamed to Compare.
Richard M. Stallman <rms@gnu.org>
parents: 8391
diff changeset
193
8010
e199eda519b5 Rearrange the edit and file menus, and add separators.
Richard M. Stallman <rms@gnu.org>
parents: 7811
diff changeset
194
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
195 ;; The "Edit" menu items
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
196
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
197 ;; The "Edit->Search" submenu
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
198 (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
199 "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
200
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
201 (defun nonincremental-repeat-search-forward ()
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
202 "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
203 (interactive)
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
204 (cond
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
205 ((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
206 search-ring)
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
207 (search-forward (car search-ring)))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
208 ((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
209 regexp-search-ring)
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
210 (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
211 (t
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
212 (error "No previous search"))))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
213
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
214 (defun nonincremental-repeat-search-backward ()
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
215 "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
216 (interactive)
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
217 (cond
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
218 ((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
219 search-ring)
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
220 (search-backward (car search-ring)))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
221 ((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
222 regexp-search-ring)
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
223 (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
224 (t
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
225 (error "No previous search"))))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
226
11067
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
227 (defun nonincremental-search-forward (string)
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
228 "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
229 (interactive "sSearch for string: ")
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
230 (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
231 (if (equal string "")
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
232 (search-forward (car search-ring))
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
233 (isearch-update-ring string nil)
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
234 (search-forward string)))
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
235
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
236 (defun nonincremental-search-backward (string)
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
237 "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
238 (interactive "sSearch for string: ")
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
239 (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
240 (if (equal string "")
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
241 (search-backward (car search-ring))
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
242 (isearch-update-ring string nil)
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
243 (search-backward string)))
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
244
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
245 (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
246 "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
247 (interactive "sSearch for regexp: ")
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
248 (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
249 (if (equal string "")
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
250 (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
251 (isearch-update-ring string t)
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
252 (re-search-forward string)))
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
253
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
254 (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
255 "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
256 (interactive "sSearch for regexp: ")
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
257 (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
258 (if (equal string "")
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
259 (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
260 (isearch-update-ring string t)
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
261 (re-search-backward string)))
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
262
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
263 (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
264
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
265 ;; The Edit->Search->Incremental Search menu
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
266 (defvar menu-bar-i-search-menu
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
267 (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
268
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
269 (define-key menu-bar-i-search-menu [isearch-backward-regexp]
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
270 '(menu-item "Backward Regexp..." isearch-backward-regexp
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
271 :help "Search backwards for a regular expression as you type it"))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
272 (define-key menu-bar-i-search-menu [isearch-forward-regexp]
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
273 '(menu-item "Forward Regexp..." isearch-forward-regexp
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
274 :help "Search forward for a regular expression as you type it"))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
275 (define-key menu-bar-i-search-menu [isearch-backward]
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
276 '(menu-item "Backward String..." isearch-backward
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
277 :help "Search backwards for a string as you type it"))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
278 (define-key menu-bar-i-search-menu [isearch-forward]
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
279 '(menu-item "Forward String..." isearch-forward
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
280 :help "Search forward for a string as you type it"))
11067
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
281
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
282
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
283 (define-key menu-bar-search-menu [i-search]
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
284 (list 'menu-item "Incremental Search" menu-bar-i-search-menu
47533
9ba60de0587d (menu-bar-search-menu): Nicer help string.
Richard M. Stallman <rms@gnu.org>
parents: 47496
diff changeset
285 :help "Incremental Search finds partial matches while you type the search string.\nIt is most convenient from the keyboard. Try it!"))
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
286 (define-key menu-bar-search-menu [separator-tag-isearch]
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
287 '(menu-item "--"))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
288
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
289 (define-key menu-bar-search-menu [tags-continue]
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
290 '(menu-item "Continue Tags Search" tags-loop-continue
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
291 :help "Continue last tags search operation"))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
292 (define-key menu-bar-search-menu [tags-srch]
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
293 '(menu-item "Search tagged files" tags-search
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
294 :help "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
295 (define-key menu-bar-search-menu [separator-tag-search]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
296 '(menu-item "--"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
297
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
298 (define-key menu-bar-search-menu [repeat-search-back]
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
299 '(menu-item "Repeat Backwards" nonincremental-repeat-search-backward
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
300 :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
301 search-ring)
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
302 (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
303 regexp-search-ring))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
304 :help "Repeat last search backwards"))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
305 (define-key menu-bar-search-menu [repeat-search-fwd]
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
306 '(menu-item "Repeat Forward" nonincremental-repeat-search-forward
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
307 :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
308 search-ring)
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
309 (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
310 regexp-search-ring))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
311 :help "Repeat last search forward"))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
312 (define-key menu-bar-search-menu [separator-repeat-search]
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
313 '(menu-item "--"))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
314
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
315 (define-key menu-bar-search-menu [re-search-backward]
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
316 '(menu-item "Regexp Backwards..." nonincremental-re-search-backward
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
317 :help "Search backwards for a regular expression"))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
318 (define-key menu-bar-search-menu [re-search-forward]
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
319 '(menu-item "Regexp Forward..." nonincremental-re-search-forward
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
320 :help "Search forward for a regular expression"))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
321
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 [search-backward]
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
323 '(menu-item "String Backwards..." nonincremental-search-backward
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
324 :help "Search backwards for a string"))
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 [search-forward]
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
326 '(menu-item "String Forward..." nonincremental-search-forward
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
327 :help "Search forward for a string"))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
328
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
329 ;; The Edit->Replace submenu
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
330
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
331 (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
332
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
333 (define-key menu-bar-replace-menu [tags-repl-continue]
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
334 '(menu-item "Continue Replace" tags-loop-continue
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
335 :help "Continue last tags replace operation"))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
336 (define-key menu-bar-replace-menu [tags-repl]
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
337 '(menu-item "Replace in tagged files" tags-query-replace
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
338 :help "Interactively replace a regexp in all tagged files"))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
339 (define-key menu-bar-replace-menu [separator-replace-tags]
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
340 '(menu-item "--"))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
341
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
342 (define-key menu-bar-replace-menu [query-replace-regexp]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
343 '(menu-item "Replace Regexp..." query-replace-regexp
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
344 :enable (not buffer-read-only)
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
345 :help "Replace regular expression interactively, ask about each occurrence"))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
346 (define-key menu-bar-replace-menu [query-replace]
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
347 '(menu-item "Replace String..." query-replace
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
348 :enable (not buffer-read-only)
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
349 :help "Replace string interactively, ask about each occurrence"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
350
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
351 ;;; 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
352 (define-key menu-bar-edit-menu [props]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
353 '(menu-item "Text Properties" facemenu-menu
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
354 :help "Change properties of text in region"))
8010
e199eda519b5 Rearrange the edit and file menus, and add separators.
Richard M. Stallman <rms@gnu.org>
parents: 7811
diff changeset
355
39108
bb0557fdcd9a Fix separators in the Edit menu. Bring "Fill" near "Text Properties".
Eli Zaretskii <eliz@gnu.org>
parents: 39080
diff changeset
356 (define-key menu-bar-edit-menu [fill]
bb0557fdcd9a Fix separators in the Edit menu. Bring "Fill" near "Text Properties".
Eli Zaretskii <eliz@gnu.org>
parents: 39080
diff changeset
357 '(menu-item "Fill" fill-region
bb0557fdcd9a Fix separators in the Edit menu. Bring "Fill" near "Text Properties".
Eli Zaretskii <eliz@gnu.org>
parents: 39080
diff changeset
358 :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
359 :help
bb0557fdcd9a Fix separators in the Edit menu. Bring "Fill" near "Text Properties".
Eli Zaretskii <eliz@gnu.org>
parents: 39080
diff changeset
360 "Fill text in region to fit between left and right margin"))
bb0557fdcd9a Fix separators in the Edit menu. Bring "Fill" near "Text Properties".
Eli Zaretskii <eliz@gnu.org>
parents: 39080
diff changeset
361
bb0557fdcd9a Fix separators in the Edit menu. Bring "Fill" near "Text Properties".
Eli Zaretskii <eliz@gnu.org>
parents: 39080
diff changeset
362 (define-key menu-bar-edit-menu [separator-bookmark]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
363 '(menu-item "--"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
364
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
365 (define-key menu-bar-edit-menu [bookmark]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
366 '(menu-item "Bookmarks" menu-bar-bookmark-map
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
367 :help "Record positions and jump between them"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
368
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
369 (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
370
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
371 (define-key menu-bar-goto-menu [set-tags-name]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
372 '(menu-item "Set Tags File Name" visit-tags-table
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
373 :help "Tell Tags commands which tag table file to use"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
374
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
375 (define-key menu-bar-goto-menu [separator-tag-file]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
376 '(menu-item "--"))
11067
a73305d0a6b4 (menu-bar-files-menu): Renamed from ...-file-menu.
Richard M. Stallman <rms@gnu.org>
parents: 11044
diff changeset
377
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
378 (define-key menu-bar-goto-menu [apropos-tags]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
379 '(menu-item "Tags Apropos" tags-apropos
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
380 :help "Find function/variables whose names match regexp"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
381 (define-key menu-bar-goto-menu [next-tag-otherw]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
382 '(menu-item "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
383 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
384 :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
385 (not (ring-empty-p tags-location-ring)))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
386 :help "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
387
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
388 (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
389 "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
390 (interactive)
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
391 (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
392
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
393 (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
394 "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
395 (interactive)
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
396 (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
397
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
398 (define-key menu-bar-goto-menu [next-tag]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
399 '(menu-item "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
400 menu-bar-next-tag
27773
e209690ccf0a (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
Eli Zaretskii <eliz@gnu.org>
parents: 27730
diff changeset
401 :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
402 (not (ring-empty-p tags-location-ring)))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
403 :help "Find next function/variable matching last tag name"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
404 (define-key menu-bar-goto-menu [find-tag-otherw]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
405 '(menu-item "Find Tag in Other Window..." find-tag-other-window
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
406 :help "Find function/variable definition in another window"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
407 (define-key menu-bar-goto-menu [find-tag]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
408 '(menu-item "Find Tag..." find-tag
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
409 :help "Find definition of function or variable"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
410
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
411 (define-key menu-bar-goto-menu [separator-tags]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
412 '(menu-item "--"))
8010
e199eda519b5 Rearrange the edit and file menus, and add separators.
Richard M. Stallman <rms@gnu.org>
parents: 7811
diff changeset
413
27730
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 [end-of-buf]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
415 '(menu-item "Goto End of Buffer" end-of-buffer))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
416 (define-key menu-bar-goto-menu [beg-of-buf]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
417 '(menu-item "Goto Beginning of Buffer" beginning-of-buffer))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
418 (define-key menu-bar-goto-menu [go-to-pos]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
419 '(menu-item "Goto Buffer Position..." goto-char
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
420 :help "Read a number N and go to buffer position N"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
421 (define-key menu-bar-goto-menu [go-to-line]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
422 '(menu-item "Goto Line..." goto-line
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
423 :help "Read a line number and go to that line"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
424
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
425 (define-key menu-bar-edit-menu [goto]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
426 (list 'menu-item "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
427
47496
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
428 (define-key menu-bar-edit-menu [replace]
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
429 (list 'menu-item "Replace" menu-bar-replace-menu))
4f825dbb49f7 (menu-bar-last-search-type): New var.
Kim F. Storm <storm@cua.dk>
parents: 47493
diff changeset
430
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
431 (define-key menu-bar-edit-menu [search]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
432 (list 'menu-item "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
433
39108
bb0557fdcd9a Fix separators in the Edit menu. Bring "Fill" near "Text Properties".
Eli Zaretskii <eliz@gnu.org>
parents: 39080
diff changeset
434 (define-key menu-bar-edit-menu [separator-search]
bb0557fdcd9a Fix separators in the Edit menu. Bring "Fill" near "Text Properties".
Eli Zaretskii <eliz@gnu.org>
parents: 39080
diff changeset
435 '(menu-item "--"))
bb0557fdcd9a Fix separators in the Edit menu. Bring "Fill" near "Text Properties".
Eli Zaretskii <eliz@gnu.org>
parents: 39080
diff changeset
436
29968
33751f6d1348 (menu-bar-edit-menu [mark-whole-buffer]): Change name to "Select All".
Eli Zaretskii <eliz@gnu.org>
parents: 29936
diff changeset
437 (define-key menu-bar-edit-menu [mark-whole-buffer]
33751f6d1348 (menu-bar-edit-menu [mark-whole-buffer]): Change name to "Select All".
Eli Zaretskii <eliz@gnu.org>
parents: 29936
diff changeset
438 '(menu-item "Select All" mark-whole-buffer
33751f6d1348 (menu-bar-edit-menu [mark-whole-buffer]): Change name to "Select All".
Eli Zaretskii <eliz@gnu.org>
parents: 29936
diff changeset
439 :help "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
440 (define-key menu-bar-edit-menu [clear]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
441 '(menu-item "Clear" delete-region
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
442 :enable (and mark-active
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
443 (not buffer-read-only)
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
444 (not (mouse-region-match)))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
445 :help
32932
dcf315209a36 Modify some menu item help strings.
Dave Love <fx@gnu.org>
parents: 32876
diff changeset
446 "Delete the text in region between mark and current position"))
8767
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
447 (defvar yank-menu (cons "Select Yank" nil))
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
448 (fset 'yank-menu (cons 'keymap yank-menu))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
449 (define-key menu-bar-edit-menu [select-paste]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
450 '(menu-item "Select and Paste" yank-menu
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
451 :enable (and (cdr yank-menu) (not buffer-read-only))
39080
6b348f80eb27 (menu-bar-edit-menu) <yank-menu, yank>: Mention
Eli Zaretskii <eliz@gnu.org>
parents: 39049
diff changeset
452 :help "Paste (yank) text cut or copied earlier"))
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-edit-menu [paste]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
454 '(menu-item "Paste" yank
40913
02b9ae26c819 (menu-bar-edit-menu): Don't use x-selection-exists-p if
Eli Zaretskii <eliz@gnu.org>
parents: 39844
diff changeset
455 :enable (and
02b9ae26c819 (menu-bar-edit-menu): Don't use x-selection-exists-p if
Eli Zaretskii <eliz@gnu.org>
parents: 39844
diff changeset
456 ;; Emacs compiled --without-x doesn't have
02b9ae26c819 (menu-bar-edit-menu): Don't use x-selection-exists-p if
Eli Zaretskii <eliz@gnu.org>
parents: 39844
diff changeset
457 ;; x-selection-exists-p.
02b9ae26c819 (menu-bar-edit-menu): Don't use x-selection-exists-p if
Eli Zaretskii <eliz@gnu.org>
parents: 39844
diff changeset
458 (fboundp 'x-selection-exists-p)
02b9ae26c819 (menu-bar-edit-menu): Don't use x-selection-exists-p if
Eli Zaretskii <eliz@gnu.org>
parents: 39844
diff changeset
459 (x-selection-exists-p) (not buffer-read-only))
39080
6b348f80eb27 (menu-bar-edit-menu) <yank-menu, yank>: Mention
Eli Zaretskii <eliz@gnu.org>
parents: 39049
diff changeset
460 :help "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
461 (define-key menu-bar-edit-menu [copy]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
462 '(menu-item "Copy" menu-bar-kill-ring-save
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
463 :enable mark-active
41095
04e401e29e4e (menu-bar-edit-menu) <copy>: Put an explicit key binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 40913
diff changeset
464 :help "Copy text in region between mark and current position"
04e401e29e4e (menu-bar-edit-menu) <copy>: Put an explicit key binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 40913
diff changeset
465 :keys "\\[kill-ring-save]"))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
466 (define-key menu-bar-edit-menu [cut]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
467 '(menu-item "Cut" kill-region
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
468 :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
469 :help
dcf315209a36 Modify some menu item help strings.
Dave Love <fx@gnu.org>
parents: 32876
diff changeset
470 "Cut (kill) text in region between mark and current position"))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
471 (define-key menu-bar-edit-menu [undo]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
472 '(menu-item "Undo" undo
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
473 :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
474 (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
475 (if (eq last-command 'undo)
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
476 pending-undo-list
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
477 (consp buffer-undo-list)))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
478 :help "Undo last operation"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
479
2847
01a46a8f1e1b (fill-region, kill-region, delete-region)
Richard M. Stallman <rms@gnu.org>
parents: 2765
diff changeset
480
10721
3d056c5a8319 (menu-bar-kill-ring-save): New function--use as `copy'.
Richard M. Stallman <rms@gnu.org>
parents: 10590
diff changeset
481 (defun menu-bar-kill-ring-save (beg end)
3d056c5a8319 (menu-bar-kill-ring-save): New function--use as `copy'.
Richard M. Stallman <rms@gnu.org>
parents: 10590
diff changeset
482 (interactive "r")
3d056c5a8319 (menu-bar-kill-ring-save): New function--use as `copy'.
Richard M. Stallman <rms@gnu.org>
parents: 10590
diff changeset
483 (if (mouse-region-match)
22655
ca137a595698 (menu-bar-kill-ring-save): Fix message typo.
Richard M. Stallman <rms@gnu.org>
parents: 22651
diff changeset
484 (message "Selecting a region with the mouse does `copy' automatically")
10721
3d056c5a8319 (menu-bar-kill-ring-save): New function--use as `copy'.
Richard M. Stallman <rms@gnu.org>
parents: 10590
diff changeset
485 (kill-ring-save beg end)))
3d056c5a8319 (menu-bar-kill-ring-save): New function--use as `copy'.
Richard M. Stallman <rms@gnu.org>
parents: 10590
diff changeset
486
4061
7279958409fe (ispell-menu-map): New autoload definition.
Richard M. Stallman <rms@gnu.org>
parents: 4048
diff changeset
487 (autoload 'ispell-menu-map "ispell" nil t 'keymap)
7279958409fe (ispell-menu-map): New autoload definition.
Richard M. Stallman <rms@gnu.org>
parents: 4048
diff changeset
488
6699
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
489 ;; 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
490 ;; 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
491
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
492 (put 'clipboard-kill-region 'menu-enable 'mark-active)
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
493 (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
494 (put 'clipboard-yank 'menu-enable
40913
02b9ae26c819 (menu-bar-edit-menu): Don't use x-selection-exists-p if
Eli Zaretskii <eliz@gnu.org>
parents: 39844
diff changeset
495 '(or (and (fboundp 'x-selection-exists-p) (x-selection-exists-p))
02b9ae26c819 (menu-bar-edit-menu): Don't use x-selection-exists-p if
Eli Zaretskii <eliz@gnu.org>
parents: 39844
diff changeset
496 (x-selection-exists-p 'CLIPBOARD)))
6699
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
497
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
498 (defun clipboard-yank ()
23982
f9ccd26b8627 (clipboard-yank): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 23532
diff changeset
499 "Insert the clipboard contents, or the last stretch of killed text."
6699
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
500 (interactive)
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
501 (let ((x-select-enable-clipboard t))
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
502 (yank)))
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
503
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
504 (defun clipboard-kill-ring-save (beg end)
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
505 "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
506 (interactive "r")
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
507 (let ((x-select-enable-clipboard t))
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
508 (kill-ring-save beg end)))
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
509
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
510 (defun clipboard-kill-region (beg end)
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
511 "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
512 (interactive "r")
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
513 (let ((x-select-enable-clipboard t))
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
514 (kill-region beg end)))
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
515
59e74bc34228 (clipboard-yank, clipboard-kill-ring-save)
Richard M. Stallman <rms@gnu.org>
parents: 6513
diff changeset
516 (defun menu-bar-enable-clipboard ()
8391
bb9718e6e844 (menu-bar-enable-clipboard): Moved here the
Richard M. Stallman <rms@gnu.org>
parents: 8347
diff changeset
517 "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
518 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
519 (interactive)
6948
54b252f540ea (menu-bar-enable-clipboard): Construct new cons cells.
Richard M. Stallman <rms@gnu.org>
parents: 6843
diff changeset
520 ;; We can't use constant list structure here because it becomes pure,
54b252f540ea (menu-bar-enable-clipboard): Construct new cons cells.
Richard M. Stallman <rms@gnu.org>
parents: 6843
diff changeset
521 ;; and because it gets modified with cache data.
54b252f540ea (menu-bar-enable-clipboard): Construct new cons cells.
Richard M. Stallman <rms@gnu.org>
parents: 6843
diff changeset
522 (define-key menu-bar-edit-menu [paste]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
523 (cons "Paste" (cons "Paste text from clipboard" 'clipboard-yank)))
6948
54b252f540ea (menu-bar-enable-clipboard): Construct new cons cells.
Richard M. Stallman <rms@gnu.org>
parents: 6843
diff changeset
524 (define-key menu-bar-edit-menu [copy]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
525 (cons "Copy" (cons "Copy text in region to the clipboard"
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
526 'clipboard-kill-ring-save)))
6948
54b252f540ea (menu-bar-enable-clipboard): Construct new cons cells.
Richard M. Stallman <rms@gnu.org>
parents: 6843
diff changeset
527 (define-key menu-bar-edit-menu [cut]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
528 (cons "Cut" (cons "Delete text in region and copy it to the clipboard"
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
529 'clipboard-kill-region)))
6745
469d679ca338 (global-map): Bind function keys f16, f18 and f20,
Richard M. Stallman <rms@gnu.org>
parents: 6699
diff changeset
530
8391
bb9718e6e844 (menu-bar-enable-clipboard): Moved here the
Richard M. Stallman <rms@gnu.org>
parents: 8347
diff changeset
531 (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
532 (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
533 (define-key global-map [f18] 'clipboard-yank)
bb9718e6e844 (menu-bar-enable-clipboard): Moved here the
Richard M. Stallman <rms@gnu.org>
parents: 8347
diff changeset
534 ;; X11R6 versions
bb9718e6e844 (menu-bar-enable-clipboard): Moved here the
Richard M. Stallman <rms@gnu.org>
parents: 8347
diff changeset
535 (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
536 (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
537 (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
538
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
539 ;; 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
540
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
541 (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
542
18700
cb17c9cd025b (menu-bar-custom-menu): Add several more menu items.
Richard M. Stallman <rms@gnu.org>
parents: 18637
diff changeset
543 (define-key menu-bar-custom-menu [customize-apropos-groups]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
544 '(menu-item "Groups Matching Regexp..." customize-apropos-groups
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
545 :help "Browse groups whose names match regexp"))
18700
cb17c9cd025b (menu-bar-custom-menu): Add several more menu items.
Richard M. Stallman <rms@gnu.org>
parents: 18637
diff changeset
546 (define-key menu-bar-custom-menu [customize-apropos-faces]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
547 '(menu-item "Faces Matching Regexp..." customize-apropos-faces
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
548 :help "Browse faces whose names match regexp"))
18700
cb17c9cd025b (menu-bar-custom-menu): Add several more menu items.
Richard M. Stallman <rms@gnu.org>
parents: 18637
diff changeset
549 (define-key menu-bar-custom-menu [customize-apropos-options]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
550 '(menu-item "Options Matching Regexp..." customize-apropos-options
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
551 :help "Browse options whose names match regexp"))
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
552 (define-key menu-bar-custom-menu [customize-apropos]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
553 '(menu-item "Settings Matching Regexp..." customize-apropos
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
554 :help "Browse customizable settings whose names match regexp"))
45044
ab83b8e87ebd (menu-bar-custom-menu): Change "Recently Changed Options"
Kim F. Storm <storm@cua.dk>
parents: 44907
diff changeset
555 (define-key menu-bar-custom-menu [separator-1]
18700
cb17c9cd025b (menu-bar-custom-menu): Add several more menu items.
Richard M. Stallman <rms@gnu.org>
parents: 18637
diff changeset
556 '("--"))
17615
32f90c43d1d2 (menu-bar-custom-menu):
Richard M. Stallman <rms@gnu.org>
parents: 17341
diff changeset
557 (define-key menu-bar-custom-menu [customize-group]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
558 '(menu-item "Specific Group..." customize-group
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
559 :help "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
560 (define-key menu-bar-custom-menu [customize-face]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
561 '(menu-item "Specific Face..." customize-face
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
562 :help "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
563 (define-key menu-bar-custom-menu [customize-option]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
564 '(menu-item "Specific Option..." customize-option
45044
ab83b8e87ebd (menu-bar-custom-menu): Change "Recently Changed Options"
Kim F. Storm <storm@cua.dk>
parents: 44907
diff changeset
565 :help "Customize value of specific option"))
ab83b8e87ebd (menu-bar-custom-menu): Change "Recently Changed Options"
Kim F. Storm <storm@cua.dk>
parents: 44907
diff changeset
566 (define-key menu-bar-custom-menu [separator-2]
ab83b8e87ebd (menu-bar-custom-menu): Change "Recently Changed Options"
Kim F. Storm <storm@cua.dk>
parents: 44907
diff changeset
567 '("--"))
21912
f485fe3e433e *** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents: 21302
diff changeset
568 (define-key menu-bar-custom-menu [customize-changed-options]
45044
ab83b8e87ebd (menu-bar-custom-menu): Change "Recently Changed Options"
Kim F. Storm <storm@cua.dk>
parents: 44907
diff changeset
569 '(menu-item "New Options..." customize-changed-options
ab83b8e87ebd (menu-bar-custom-menu): Change "Recently Changed Options"
Kim F. Storm <storm@cua.dk>
parents: 44907
diff changeset
570 :help "Options added or changed in recent Emacs versions"))
ab83b8e87ebd (menu-bar-custom-menu): Change "Recently Changed Options"
Kim F. Storm <storm@cua.dk>
parents: 44907
diff changeset
571 (define-key menu-bar-custom-menu [customize-saved]
ab83b8e87ebd (menu-bar-custom-menu): Change "Recently Changed Options"
Kim F. Storm <storm@cua.dk>
parents: 44907
diff changeset
572 '(menu-item "Saved Options" customize-saved
ab83b8e87ebd (menu-bar-custom-menu): Change "Recently Changed Options"
Kim F. Storm <storm@cua.dk>
parents: 44907
diff changeset
573 :help "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
574 (define-key menu-bar-custom-menu [separator-3]
cb17c9cd025b (menu-bar-custom-menu): Add several more menu items.
Richard M. Stallman <rms@gnu.org>
parents: 18637
diff changeset
575 '("--"))
18602
9b34ca7eb8ef Fix previous change.
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 18601
diff changeset
576 (define-key menu-bar-custom-menu [customize-browse]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
577 '(menu-item "Browse Customization Groups" customize-browse
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
578 :help "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
579 (define-key menu-bar-custom-menu [customize]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
580 '(menu-item "Top-level Customization Group" customize
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
581 :help "The master group called `Emacs'"))
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
582
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
583 ;(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
584
47296
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
585 (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
586 "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
587 FNAME is the minor mode's name (variable and function).
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
588 DOC is the text to use the menu entry.
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
589 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
590 PROPS are additional properties."
47493
af1e3a228034 (menu-bar-make-mm-toggle): Don't put a quote befor FNAME
Richard M. Stallman <rms@gnu.org>
parents: 47421
diff changeset
591 `'(menu-item ,doc ,fname
47296
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
592 ,@(if props props)
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
593 :help ,help
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
594 :button (:toggle . (and (default-boundp ',fname)
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
595 (default-value ',fname)))))
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
596
47421
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
597 (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
598 `(progn
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
599 (defun ,name ()
38155
29c8619f91d0 (menu-bar-make-toggle): Construct the
Richard M. Stallman <rms@gnu.org>
parents: 38146
diff changeset
600 ,(concat "Toggle whether to " (downcase (substring help 0 1))
29c8619f91d0 (menu-bar-make-toggle): Construct the
Richard M. Stallman <rms@gnu.org>
parents: 38146
diff changeset
601 (substring help 1) ".")
19617
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
602 (interactive)
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
603 (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
604 `(progn
43246
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
605 (custom-load-symbol ',variable)
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
606 (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
607 (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
608 (funcall set ',variable (not (funcall get ',variable))))))
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
609 (message ,message "enabled")
47421
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
610 (message ,message "disabled"))
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
611 ;; 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
612 ;; 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
613 ;; 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
614 ;; the user have already set explicitly in his init file.
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
615 (if (interactive-p) (customize-mark-as-set ',variable)))
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
616 '(menu-item ,doc ,name
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
617 :help ,help
43246
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
618 :button (:toggle . (and (default-boundp ',variable)
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
619 (default-value ',variable))))))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
620
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
621 ;;; 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
622 (define-key menu-bar-options-menu [customize]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
623 (list 'menu-item "Customize Emacs" menu-bar-custom-menu
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
624 :help "Full customization of every Emacs feature"))
29739
96e0d508f234 (menu-bar-options-save): New function.
Dave Love <fx@gnu.org>
parents: 29685
diff changeset
625
96e0d508f234 (menu-bar-options-save): New function.
Dave Love <fx@gnu.org>
parents: 29685
diff changeset
626 (defun menu-bar-options-save ()
96e0d508f234 (menu-bar-options-save): New function.
Dave Love <fx@gnu.org>
parents: 29685
diff changeset
627 "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
628 (interactive)
43167
6dab4dad0093 2002-02-05 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43086
diff changeset
629 (let ((need-save nil))
43246
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
630 ;; These are set with `customize-set-variable'.
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
631 (dolist (elt '(line-number-mode column-number-mode scroll-bar-mode
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
632 debug-on-quit debug-on-error menu-bar-mode tool-bar-mode
45492
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
633 save-place uniquify-buffer-name-style fringe-mode
45073
c7b6259de115 (menu-bar-make-toggle): Added optional PROPS arg.
Kim F. Storm <storm@cua.dk>
parents: 45044
diff changeset
634 case-fold-search cua-mode show-paren-mode
43167
6dab4dad0093 2002-02-05 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43086
diff changeset
635 transient-mark-mode global-font-lock-mode
43246
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
636 display-time-mode auto-compression-mode
43252
bccb026d40e4 2002-02-12 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43246
diff changeset
637 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
638 ;; 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
639 ;; 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
640 ;; 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
641 ;; 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
642 ;; more often.
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
643 ;; -- Per Abrahamsen <abraham@dina.kvl.dk> 2002-02-11.
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
644 text-mode-hook))
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
645 (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
646 (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
647 (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
648 ;; 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
649 (when need-save
6dab4dad0093 2002-02-05 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43086
diff changeset
650 (custom-save-all))))
29739
96e0d508f234 (menu-bar-options-save): New function.
Dave Love <fx@gnu.org>
parents: 29685
diff changeset
651
96e0d508f234 (menu-bar-options-save): New function.
Dave Love <fx@gnu.org>
parents: 29685
diff changeset
652 (define-key menu-bar-options-menu [save]
29741
350b549354fc (menu-bar-options-menu): Capitalize "Save Options".
Dave Love <fx@gnu.org>
parents: 29739
diff changeset
653 '(menu-item "Save Options" menu-bar-options-save
29739
96e0d508f234 (menu-bar-options-save): New function.
Dave Love <fx@gnu.org>
parents: 29685
diff changeset
654 :help "Save options set from the menu above"))
96e0d508f234 (menu-bar-options-save): New function.
Dave Love <fx@gnu.org>
parents: 29685
diff changeset
655
96e0d508f234 (menu-bar-options-save): New function.
Dave Love <fx@gnu.org>
parents: 29685
diff changeset
656 (define-key menu-bar-options-menu [custom-separator]
96e0d508f234 (menu-bar-options-save): New function.
Dave Love <fx@gnu.org>
parents: 29685
diff changeset
657 '("--"))
96e0d508f234 (menu-bar-options-save): New function.
Dave Love <fx@gnu.org>
parents: 29685
diff changeset
658
43020
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
659 ;; 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
660
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
661 (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
662
43216
68ff008e0fbd (menu-bar-options-save): Take care of line-number-mode and
Pavel Janík <Pavel@Janik.cz>
parents: 43167
diff changeset
663 (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
664 (menu-bar-make-mm-toggle column-number-mode
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
665 "Show Column Numbers"
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
666 "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
667
68ff008e0fbd (menu-bar-options-save): Take care of line-number-mode and
Pavel Janík <Pavel@Janik.cz>
parents: 43167
diff changeset
668 (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
669 (menu-bar-make-mm-toggle line-number-mode
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
670 "Show Line Numbers"
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
671 "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
672
68ff008e0fbd (menu-bar-options-save): Take care of line-number-mode and
Pavel Janík <Pavel@Janik.cz>
parents: 43167
diff changeset
673 (define-key menu-bar-showhide-menu [linecolumn-separator]
68ff008e0fbd (menu-bar-options-save): Take care of line-number-mode and
Pavel Janík <Pavel@Janik.cz>
parents: 43167
diff changeset
674 '("--"))
68ff008e0fbd (menu-bar-options-save): Take care of line-number-mode and
Pavel Janík <Pavel@Janik.cz>
parents: 43167
diff changeset
675
43086
2f5ddf0e74ba (menu-bar-help-menu): Use different text for tool-tip.
Pavel Janík <Pavel@Janik.cz>
parents: 43020
diff changeset
676 (defun showhide-date-time ()
2f5ddf0e74ba (menu-bar-help-menu): Use different text for tool-tip.
Pavel Janík <Pavel@Janik.cz>
parents: 43020
diff changeset
677 "Toggle whether to show date and time in the mode-line."
2f5ddf0e74ba (menu-bar-help-menu): Use different text for tool-tip.
Pavel Janík <Pavel@Janik.cz>
parents: 43020
diff changeset
678 (interactive)
2f5ddf0e74ba (menu-bar-help-menu): Use different text for tool-tip.
Pavel Janík <Pavel@Janik.cz>
parents: 43020
diff changeset
679 (if (display-time-mode)
2f5ddf0e74ba (menu-bar-help-menu): Use different text for tool-tip.
Pavel Janík <Pavel@Janik.cz>
parents: 43020
diff changeset
680 (message "Display-time mode enabled.")
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
681 (message "Display-time mode disabled."))
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
682 (customize-mark-as-set 'display-time-mode))
43086
2f5ddf0e74ba (menu-bar-help-menu): Use different text for tool-tip.
Pavel Janík <Pavel@Janik.cz>
parents: 43020
diff changeset
683
2f5ddf0e74ba (menu-bar-help-menu): Use different text for tool-tip.
Pavel Janík <Pavel@Janik.cz>
parents: 43020
diff changeset
684 (define-key menu-bar-showhide-menu [showhide-date-time]
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
685 '(menu-item "Date and Time" showhide-date-time
45228
66644e336dd7 (menu-bar-showhide-scroll-bar-menu)
Eli Zaretskii <eliz@gnu.org>
parents: 45073
diff changeset
686 :help "Display date and time in the mode line"
43086
2f5ddf0e74ba (menu-bar-help-menu): Use different text for tool-tip.
Pavel Janík <Pavel@Janik.cz>
parents: 43020
diff changeset
687 :button (:toggle . display-time-mode)))
2f5ddf0e74ba (menu-bar-help-menu): Use different text for tool-tip.
Pavel Janík <Pavel@Janik.cz>
parents: 43020
diff changeset
688
2f5ddf0e74ba (menu-bar-help-menu): Use different text for tool-tip.
Pavel Janík <Pavel@Janik.cz>
parents: 43020
diff changeset
689 (define-key menu-bar-showhide-menu [datetime-separator]
2f5ddf0e74ba (menu-bar-help-menu): Use different text for tool-tip.
Pavel Janík <Pavel@Janik.cz>
parents: 43020
diff changeset
690 '("--"))
2f5ddf0e74ba (menu-bar-help-menu): Use different text for tool-tip.
Pavel Janík <Pavel@Janik.cz>
parents: 43020
diff changeset
691
43383
d21a74d23497 2002-02-17 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43305
diff changeset
692 (define-key menu-bar-showhide-menu [showhide-speedbar]
d21a74d23497 2002-02-17 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43305
diff changeset
693 '(menu-item "Speedbar" speedbar-frame-mode
45228
66644e336dd7 (menu-bar-showhide-scroll-bar-menu)
Eli Zaretskii <eliz@gnu.org>
parents: 45073
diff changeset
694 :help "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
695 :button (:toggle
d21a74d23497 2002-02-17 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43305
diff changeset
696 . (and (boundp 'speedbar-frame)
d21a74d23497 2002-02-17 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43305
diff changeset
697 (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
698 (frame-visible-p
43383
d21a74d23497 2002-02-17 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43305
diff changeset
699 (symbol-value 'speedbar-frame))))))
d21a74d23497 2002-02-17 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43305
diff changeset
700
45588
ac048d849245 (menu-bar-showhide-fringe-menu): Use defvar.
Richard M. Stallman <rms@gnu.org>
parents: 45505
diff changeset
701 (defvar menu-bar-showhide-fringe-menu (make-sparse-keymap "Fringe"))
45492
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
702
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
703 (defun menu-bar-showhide-fringe-menu-customize ()
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
704 "Show customization buffer for `fringe-mode'."
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
705 (interactive)
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
706 (customize-variable 'fringe-mode))
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
707
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
708 (define-key menu-bar-showhide-fringe-menu [customize]
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
709 '(menu-item "Customize" menu-bar-showhide-fringe-menu-customize
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
710 :help "Detailed customization of fringe"
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
711 :visible (display-graphic-p)))
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
712
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
713 (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
714 "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
715 (interactive)
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
716 (customize-set-variable 'fringe-mode nil))
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
717
46925
9ce7894d4af8 (fringe-mode): Set to nil.
Richard M. Stallman <rms@gnu.org>
parents: 46908
diff changeset
718 ;; The real definition is in fringe.el.
9ce7894d4af8 (fringe-mode): Set to nil.
Richard M. Stallman <rms@gnu.org>
parents: 46908
diff changeset
719 ;; This is to prevent errors in the :radio conditions below.
9ce7894d4af8 (fringe-mode): Set to nil.
Richard M. Stallman <rms@gnu.org>
parents: 46908
diff changeset
720 (setq fringe-mode nil)
9ce7894d4af8 (fringe-mode): Set to nil.
Richard M. Stallman <rms@gnu.org>
parents: 46908
diff changeset
721
45492
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
722 (define-key menu-bar-showhide-fringe-menu [default]
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
723 '(menu-item "Default" menu-bar-showhide-fringe-menu-customize-reset
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
724 :help "Default width fringe on both left and right side"
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
725 :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
726 :button (:radio . (eq fringe-mode nil))))
45492
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
727
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
728 (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
729 "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
730 (interactive)
45505
59015bfc2305 (menu-bar-showhide-fringe-menu-customize-left)
Miles Bader <miles@gnu.org>
parents: 45492
diff changeset
731 (require 'fringe)
59015bfc2305 (menu-bar-showhide-fringe-menu-customize-left)
Miles Bader <miles@gnu.org>
parents: 45492
diff changeset
732 (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
733
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
734 (define-key menu-bar-showhide-fringe-menu [left]
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
735 '(menu-item "On the Left" menu-bar-showhide-fringe-menu-customize-left
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
736 :help "Fringe only on the left side"
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
737 :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
738 :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
739
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
740 (defun menu-bar-showhide-fringe-menu-customize-right ()
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
741 "Display fringes only on the right of each window."
45492
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
742 (interactive)
45505
59015bfc2305 (menu-bar-showhide-fringe-menu-customize-left)
Miles Bader <miles@gnu.org>
parents: 45492
diff changeset
743 (require 'fringe)
59015bfc2305 (menu-bar-showhide-fringe-menu-customize-left)
Miles Bader <miles@gnu.org>
parents: 45492
diff changeset
744 (customize-set-variable 'fringe-mode '(0 . nil)))
45492
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
745
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
746 (define-key menu-bar-showhide-fringe-menu [right]
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
747 '(menu-item "On the Right" menu-bar-showhide-fringe-menu-customize-right
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
748 :help "Fringe only on the right side"
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
749 :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
750 :button (:radio . (equal fringe-mode '(0 . nil)))))
45492
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
751
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
752 (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
753 "Do not display window fringes."
45492
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
754 (interactive)
45505
59015bfc2305 (menu-bar-showhide-fringe-menu-customize-left)
Miles Bader <miles@gnu.org>
parents: 45492
diff changeset
755 (require 'fringe)
59015bfc2305 (menu-bar-showhide-fringe-menu-customize-left)
Miles Bader <miles@gnu.org>
parents: 45492
diff changeset
756 (customize-set-variable 'fringe-mode 0))
45492
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
757
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
758 (define-key menu-bar-showhide-fringe-menu [none]
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
759 '(menu-item "None" menu-bar-showhide-fringe-menu-customize-disable
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
760 :help "Turn off fringe"
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
761 :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
762 :button (:radio . (eq fringe-mode 0))))
45492
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
763
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
764 (define-key menu-bar-showhide-menu [showhide-fringe]
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
765 (list 'menu-item "Fringe" menu-bar-showhide-fringe-menu
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
766 :visible `(display-graphic-p)
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
767 :help "Select fringe mode"))
955cc9eaf87a (menu-bar-options-save): Add fringe-mode.
Simon Josefsson <jas@extundo.com>
parents: 45324
diff changeset
768
43020
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
769 (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
770
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
771 (define-key menu-bar-showhide-scroll-bar-menu [right]
44499
6c160013fa0e (menu-bar-adv-search-menu): Add incremental search.
Pavel Janík <Pavel@Janik.cz>
parents: 44267
diff changeset
772 '(menu-item "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
773 menu-bar-right-scroll-bar
43020
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
774 :help "Scroll-bar on the right side"
45228
66644e336dd7 (menu-bar-showhide-scroll-bar-menu)
Eli Zaretskii <eliz@gnu.org>
parents: 45073
diff changeset
775 :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
776 :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
777 (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
778 (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
779 "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
780 (interactive)
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
781 (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
782
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
783 (define-key menu-bar-showhide-scroll-bar-menu [left]
44499
6c160013fa0e (menu-bar-adv-search-menu): Add incremental search.
Pavel Janík <Pavel@Janik.cz>
parents: 44267
diff changeset
784 '(menu-item "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
785 menu-bar-left-scroll-bar
43020
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
786 :help "Scroll-bar on the left side"
45228
66644e336dd7 (menu-bar-showhide-scroll-bar-menu)
Eli Zaretskii <eliz@gnu.org>
parents: 45073
diff changeset
787 :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
788 :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
789 (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
790
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
791 (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
792 "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
793 (interactive)
49012
5f0cc4c0a0c7 (menu-bar-left-scroll-bar): Set `scroll-bar-mode'
John Paul Wallington <jpw@pobox.com>
parents: 48524
diff changeset
794 (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
795
43020
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
796 (define-key menu-bar-showhide-scroll-bar-menu [none]
44499
6c160013fa0e (menu-bar-adv-search-menu): Add incremental search.
Pavel Janík <Pavel@Janik.cz>
parents: 44267
diff changeset
797 '(menu-item "None"
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
798 menu-bar-no-scroll-bar
43020
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
799 :help "Turn off scroll-bar"
45228
66644e336dd7 (menu-bar-showhide-scroll-bar-menu)
Eli Zaretskii <eliz@gnu.org>
parents: 45073
diff changeset
800 :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
801 :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
802 (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
803
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
804 (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
805 "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
806 (interactive)
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
807 (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
808
43020
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
809 (define-key menu-bar-showhide-menu [showhide-scroll-bar]
44499
6c160013fa0e (menu-bar-adv-search-menu): Add incremental search.
Pavel Janík <Pavel@Janik.cz>
parents: 44267
diff changeset
810 (list 'menu-item "Scroll-bar" menu-bar-showhide-scroll-bar-menu
45228
66644e336dd7 (menu-bar-showhide-scroll-bar-menu)
Eli Zaretskii <eliz@gnu.org>
parents: 45073
diff changeset
811 :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
812 :help "Select scroll-bar mode"))
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
813
47296
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
814 (define-key menu-bar-showhide-menu [menu-bar-mode]
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
815 '(menu-item "Menu-bar" menu-bar-mode
43020
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
816 :help "Toggle menu-bar on/off"
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
817 :button (:toggle . menu-bar-mode)))
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
818
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
819 (define-key menu-bar-showhide-menu [showhide-tool-bar]
47296
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
820 (list 'menu-item "Tool-bar" 'tool-bar-mode
45228
66644e336dd7 (menu-bar-showhide-scroll-bar-menu)
Eli Zaretskii <eliz@gnu.org>
parents: 45073
diff changeset
821 :help "Turn tool-bar on/off"
66644e336dd7 (menu-bar-showhide-scroll-bar-menu)
Eli Zaretskii <eliz@gnu.org>
parents: 45073
diff changeset
822 :visible `(display-graphic-p)
66644e336dd7 (menu-bar-showhide-scroll-bar-menu)
Eli Zaretskii <eliz@gnu.org>
parents: 45073
diff changeset
823 :button `(:toggle . tool-bar-mode)))
43020
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
824
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
825 (define-key menu-bar-options-menu [showhide]
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
826 (list 'menu-item "Show/Hide" menu-bar-showhide-menu
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
827 :help "Toggle on/off various display features"))
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
828
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
829 (define-key menu-bar-options-menu [showhide-separator]
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
830 '("--"))
9a93c325183a (menu-bar-options-save): Add `default-frame-alist' to saved variables.
Pavel Janík <Pavel@Janik.cz>
parents: 43018
diff changeset
831
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
832 (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
833 ;; 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
834 ;; 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
835 ;; if you need to recompile all the Lisp files using interpreted code.
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
836 (list 'menu-item "Mule (Multilingual Environment)" mule-menu-keymap
28557
6f1d9b65d1f8 (menu-bar-options-menu): Make `mule' always visible.
Dave Love <fx@gnu.org>
parents: 28258
diff changeset
837 ;; 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
838 ;; e.g. language selection.
6f1d9b65d1f8 (menu-bar-options-menu): Make `mule' always visible.
Dave Love <fx@gnu.org>
parents: 28258
diff changeset
839 ;;; ':visible 'default-enable-multibyte-characters
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
840 ':help "Default language, encodings, input method"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
841 ;(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
842 ;(define-key menu-bar-options-menu [preferences]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
843 ; (list 'menu-item "Preferences" menu-bar-preferences-menu
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
844 ; :help "Toggle important global options"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
845
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
846 (define-key menu-bar-options-menu [mule-separator]
28557
6f1d9b65d1f8 (menu-bar-options-menu): Make `mule' always visible.
Dave Love <fx@gnu.org>
parents: 28258
diff changeset
847 '("--"))
19617
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
848
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
849 (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
850 (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
851 "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
852 "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
853 (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
854 (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
855 "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
856 "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
857 (define-key menu-bar-options-menu [debugger-separator]
19617
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
858 '("--"))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
859 (define-key menu-bar-options-menu [toggle-auto-compression]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
860 '(menu-item "Automatic File De/compression"
47296
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
861 auto-compression-mode
43246
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
862 :help "Transparently decompress compressed files"
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
863 :button (:toggle . (rassq 'jka-compr-handler
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
864 file-name-handler-alist))))
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
865
19617
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
866 (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
867 (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
868 "Save Place in Files between Sessions"
19617
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
869 "Saving place in files %s"
48407
243072643e17 (menu-bar-options-menu): Improve tooltip string.
Richard M. Stallman <rms@gnu.org>
parents: 47533
diff changeset
870 "Visit files of previous session when restarting Emacs"))
43246
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
871
19617
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
872 (define-key menu-bar-options-menu [uniquify]
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
873 (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
874 "Use Directory Names in Buffer Names"
19617
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
875 "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
876 "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
877 (require 'uniquify)
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
878 (setq uniquify-buffer-name-style
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
879 (if (not uniquify-buffer-name-style)
6337e9a0ed92 (menu-bar-make-toggle): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 18700
diff changeset
880 'forward))))
43246
c187056ac630 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43224
diff changeset
881
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
882 (define-key menu-bar-options-menu [edit-options-separator]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
883 '("--"))
45073
c7b6259de115 (menu-bar-make-toggle): Added optional PROPS arg.
Kim F. Storm <storm@cua.dk>
parents: 45044
diff changeset
884 (define-key menu-bar-options-menu [cua-mode]
c7b6259de115 (menu-bar-make-toggle): Added optional PROPS arg.
Kim F. Storm <storm@cua.dk>
parents: 45044
diff changeset
885 '(menu-item "CUA-style cut and paste"
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
886 menu-bar-toggle-cua-mode
45073
c7b6259de115 (menu-bar-make-toggle): Added optional PROPS arg.
Kim F. Storm <storm@cua.dk>
parents: 45044
diff changeset
887 :help "Use C-z/C-x/C-c/C-v keys for undo/cut/copy/paste"
c7b6259de115 (menu-bar-make-toggle): Added optional PROPS arg.
Kim F. Storm <storm@cua.dk>
parents: 45044
diff changeset
888 :button (:toggle . cua-mode)))
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
889
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
890 (defun menu-bar-toggle-cua-mode ()
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
891 "Toggle CUA key-binding mode.
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
892 When enabled, using shifted movement keys will activate the region (and
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
893 highlight the region using `transient-mark-mode'), and typed text replaces
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
894 the active selection. C-z, C-x, C-c, and C-v will undo, cut, copy, and
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
895 paste (in addition to the normal Emacs bindings)."
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
896 (interactive)
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
897 (cua-mode nil)
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
898 (customize-mark-as-set 'cua-mode)
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
899 (message "CUA-style cut and paste %s"
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
900 (if cua-mode "enabled" "disabled")))
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
901
22207
51847ba069f8 (toggle-case-fold-search): New command.
Richard M. Stallman <rms@gnu.org>
parents: 21912
diff changeset
902 (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
903 (menu-bar-make-toggle toggle-case-fold-search case-fold-search
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
904 "Case-Insensitive Search"
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
905 "Case-Insensitive Search %s"
38155
29c8619f91d0 (menu-bar-make-toggle): Construct the
Richard M. Stallman <rms@gnu.org>
parents: 38146
diff changeset
906 "Ignore letter-case in search"))
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
907
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
908 (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
909 (interactive)
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
910 (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
911 ;; 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
912 ;; 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
913 ;; -- 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
914 (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
915
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
916 (define-key menu-bar-options-menu [auto-fill-mode]
46102
3a5c7022ed2f 2002-06-30 Simon Josefsson <jas@extundo.com>
Simon Josefsson <jas@extundo.com>
parents: 45783
diff changeset
917 '(menu-item "Word Wrap 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
918 menu-bar-text-mode-auto-fill
46102
3a5c7022ed2f 2002-06-30 Simon Josefsson <jas@extundo.com>
Simon Josefsson <jas@extundo.com>
parents: 45783
diff changeset
919 :help "Automatically fill text between left and right margins (Auto Fill)"
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
920 :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
921 (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
922 (eq 'turn-on-auto-fill text-mode-hook)))))
23532
a493aa84f62f (menu-bar-options-menu): Add options for truncate-lines and show-paren.
Richard M. Stallman <rms@gnu.org>
parents: 23373
diff changeset
923 (define-key menu-bar-options-menu [truncate-lines]
43254
eb6104aac6b0 2002-02-12 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43252
diff changeset
924 '(menu-item "Truncate Long Lines in this Buffer"
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
925 toggle-truncate-lines
43254
eb6104aac6b0 2002-02-12 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43252
diff changeset
926 :help "Truncate long lines on the screen"
eb6104aac6b0 2002-02-12 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43252
diff changeset
927 :button (:toggle . truncate-lines)))
eb6104aac6b0 2002-02-12 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43252
diff changeset
928
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
929 (define-key menu-bar-options-menu [highlight-separator]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
930 '("--"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
931 (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
932 (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
933 "Paren Match Highlighting"
47421
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
934 "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
935 (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
936 (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
937 "Active Region Highlighting"
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
938 "Make text in active region stand out in color (Transient Mark mode)"
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
939 (:enable (not cua-mode))))
19793
8c5aca90861b (menu-bar-options-menu): Simplify global-font-lock-mode
Richard M. Stallman <rms@gnu.org>
parents: 19731
diff changeset
940 (define-key menu-bar-options-menu [toggle-global-lazy-font-lock-mode]
47296
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
941 (menu-bar-make-mm-toggle global-font-lock-mode
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
942 "Syntax Highlighting"
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
943 "Colorize text based on language syntax (Global Font Lock mode)"))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
944
20336
6c26b3f61e02 (menu-bar-help-menu): Reorganize into more submenus.
Richard M. Stallman <rms@gnu.org>
parents: 19793
diff changeset
945
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
946 ;; The "Tools" menu items
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
947
32329
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
948 (defun send-mail-item-name ()
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
949 (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
950 (mh-e-user-agent . "MH")
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
951 (message-user-agent . "Gnus Message")
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
952 (gnus-user-agent . "Gnus")))
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
953 (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
954 (if name
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
955 (setq name (cdr name))
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
956 (setq name (symbol-name mail-user-agent))
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
957 (if (string-match "\\(.+\\)-user-agent" name)
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
958 (setq name (match-string 1 name))))
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
959 name))
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
960
31471
84f6fc78ec6d (read-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31461
diff changeset
961 (defun read-mail-item-name ()
84f6fc78ec6d (read-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31461
diff changeset
962 (let* ((known-rmail-commands '((rmail . "RMAIL")
84f6fc78ec6d (read-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31461
diff changeset
963 (mh-rmail . "MH")
84f6fc78ec6d (read-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31461
diff changeset
964 (gnus . "Gnus")))
84f6fc78ec6d (read-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31461
diff changeset
965 (known (assq read-mail-command known-rmail-commands)))
84f6fc78ec6d (read-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31461
diff changeset
966 (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
967
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
968 (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
969
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
970 (define-key menu-bar-tools-menu [games]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
971 (list 'menu-item "Games" menu-bar-games-menu))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
972
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
973 (define-key menu-bar-tools-menu [separator-games]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
974 '("--"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
975
30586
9b8feaf1cd2f (menu-bar-games-menu): Add Zone.
Eli Zaretskii <eliz@gnu.org>
parents: 30387
diff changeset
976 (define-key menu-bar-games-menu [zone]
9b8feaf1cd2f (menu-bar-games-menu): Add Zone.
Eli Zaretskii <eliz@gnu.org>
parents: 30387
diff changeset
977 '(menu-item "Zone Out" zone
9b8feaf1cd2f (menu-bar-games-menu): Add Zone.
Eli Zaretskii <eliz@gnu.org>
parents: 30387
diff changeset
978 :help "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
979 (define-key menu-bar-games-menu [yow]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
980 '(menu-item "Random Quotation" yow
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
981 :help "Display a random Zippy quotation"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
982 (define-key menu-bar-games-menu [tetris]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
983 '(menu-item "Tetris" tetris))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
984 (define-key menu-bar-games-menu [solitaire]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
985 '(menu-item "Solitaire" solitaire))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
986 (define-key menu-bar-games-menu [snake]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
987 '(menu-item "Snake" snake
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
988 :help "Move snake around avoiding collisions"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
989 (define-key menu-bar-games-menu [mult]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
990 '(menu-item "Multiplication Puzzle" mpuz
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
991 :help "Excercise brain with multiplication"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
992 (define-key menu-bar-games-menu [life]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
993 '(menu-item "Life" life
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
994 :help "Watch how John Conway's cellular automaton evolves"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
995 (define-key menu-bar-games-menu [hanoi]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
996 '(menu-item "Towers of Hanoi" hanoi
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
997 :help "Watch Towers-of-Hanoi puzzle solved by Emacs"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
998 (define-key menu-bar-games-menu [gomoku]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
999 '(menu-item "Gomoku" gomoku
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1000 :help "Mark 5 contiguous squares (like tic-tac-toe)"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1001 (define-key menu-bar-games-menu [black-box]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1002 '(menu-item "Blackbox" blackbox
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1003 :help "Find balls in a black box by shooting rays"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1004 (define-key menu-bar-games-menu [adventure]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1005 '(menu-item "Adventure" dunnet
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1006 :help "Dunnet, a text Adventure game for Emacs"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1007 (define-key menu-bar-games-menu [5x5]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1008 '(menu-item "5x5" 5x5
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1009 :help "Fill in all the squares on a 5x5 board"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1010
45324
76c4660660ec (menu-bar-tools-menu) <calculator>: Renamed to "Simple Calculator".
Colin Walters <walters@gnu.org>
parents: 45228
diff changeset
1011 (define-key menu-bar-tools-menu [simple-calculator]
76c4660660ec (menu-bar-tools-menu) <calculator>: Renamed to "Simple Calculator".
Colin Walters <walters@gnu.org>
parents: 45228
diff changeset
1012 '(menu-item "Simple Calculator" calculator
76c4660660ec (menu-bar-tools-menu) <calculator>: Renamed to "Simple Calculator".
Colin Walters <walters@gnu.org>
parents: 45228
diff changeset
1013 :help "Invoke the Emacs built-in quick calculator"))
76c4660660ec (menu-bar-tools-menu) <calculator>: Renamed to "Simple Calculator".
Colin Walters <walters@gnu.org>
parents: 45228
diff changeset
1014 (define-key menu-bar-tools-menu [calc]
76c4660660ec (menu-bar-tools-menu) <calculator>: Renamed to "Simple Calculator".
Colin Walters <walters@gnu.org>
parents: 45228
diff changeset
1015 '(menu-item "Programmable Calculator" calc
76c4660660ec (menu-bar-tools-menu) <calculator>: Renamed to "Simple Calculator".
Colin Walters <walters@gnu.org>
parents: 45228
diff changeset
1016 :help "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
1017 (define-key menu-bar-tools-menu [calendar]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1018 '(menu-item "Display Calendar" calendar))
43305
976d3d8ab9a3 (menu-bar-tools-menu): Add an item for Calculator.
Eli Zaretskii <eliz@gnu.org>
parents: 43254
diff changeset
1019
976d3d8ab9a3 (menu-bar-tools-menu): Add an item for Calculator.
Eli Zaretskii <eliz@gnu.org>
parents: 43254
diff changeset
1020 (define-key menu-bar-tools-menu [separator-net]
976d3d8ab9a3 (menu-bar-tools-menu): Add an item for Calculator.
Eli Zaretskii <eliz@gnu.org>
parents: 43254
diff changeset
1021 '("--"))
976d3d8ab9a3 (menu-bar-tools-menu): Add an item for Calculator.
Eli Zaretskii <eliz@gnu.org>
parents: 43254
diff changeset
1022
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1023 (define-key menu-bar-tools-menu [directory-search]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1024 '(menu-item "Directory Search" eudc-tools-menu
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1025 :help "Query directory servers via LDAP, CCSO PH/QI or BBDB"))
28557
6f1d9b65d1f8 (menu-bar-options-menu): Make `mule' always visible.
Dave Love <fx@gnu.org>
parents: 28258
diff changeset
1026 (define-key menu-bar-tools-menu [compose-mail]
32329
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
1027 (list
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
1028 'menu-item `(format "Send Mail (with %s)" (send-mail-item-name))
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
1029 'compose-mail
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
1030 :visible `(and mail-user-agent (not (eq mail-user-agent 'ignore)))
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
1031 :help "Send a mail message"))
28557
6f1d9b65d1f8 (menu-bar-options-menu): Make `mule' always visible.
Dave Love <fx@gnu.org>
parents: 28258
diff changeset
1032 (define-key menu-bar-tools-menu [rmail]
31471
84f6fc78ec6d (read-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31461
diff changeset
1033 (list
84f6fc78ec6d (read-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31461
diff changeset
1034 'menu-item `(format "Read Mail (with %s)" (read-mail-item-name))
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1035 'menu-bar-read-mail
32329
878aee6eaf4b (send-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31645
diff changeset
1036 :visible `(and read-mail-command (not (eq read-mail-command 'ignore)))
31471
84f6fc78ec6d (read-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31461
diff changeset
1037 :help "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
1038
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1039 (defun menu-bar-read-mail ()
47152
58ccd45ac06b (menu-bar-read-mail): Doc fix.
Markus Rost <rost@math.uni-bielefeld.de>
parents: 46925
diff changeset
1040 "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
1041 (interactive)
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1042 (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
1043
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1044 (define-key menu-bar-tools-menu [gnus]
31471
84f6fc78ec6d (read-mail-item-name): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 31461
diff changeset
1045 '(menu-item "Read Net News (Gnus)" gnus
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1046 :help "Read network news groups"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1047
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1048 (define-key menu-bar-tools-menu [separator-vc]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1049 '("--"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1050
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1051 (defvar vc-menu-map (make-sparse-keymap "Version Control"))
28258
03e06f15f3d4 Add an entry for PCL-CVS' global menu.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 27773
diff changeset
1052 (define-key menu-bar-tools-menu [pcl-cvs]
03e06f15f3d4 Add an entry for PCL-CVS' global menu.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 27773
diff changeset
1053 `(menu-item "PCL-CVS" ,cvs-global-menu
03e06f15f3d4 Add an entry for PCL-CVS' global menu.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 27773
diff changeset
1054 :help "Module-level interface to CVS"))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1055 (define-key menu-bar-tools-menu [vc]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1056 (list 'menu-item "Version Control" vc-menu-map
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1057 :help "Interface to RCS, CVS, SCCS"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1058
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1059 (define-key menu-bar-tools-menu [separator-compare]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1060 '("--"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1061
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1062 (define-key menu-bar-tools-menu [ediff-misc]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1063 '(menu-item "Ediff Miscellanea" menu-bar-ediff-misc-menu
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1064 :help "Ediff manual, customization, sessions, etc."))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1065 (define-key menu-bar-tools-menu [epatch]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1066 '(menu-item "Apply Patch" menu-bar-epatch-menu))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1067 (define-key menu-bar-tools-menu [ediff-merge]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1068 '(menu-item "Merge" menu-bar-ediff-merge-menu
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1069 :help "Merge different revisions of files/directories"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1070 (define-key menu-bar-tools-menu [compare]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1071 '(menu-item "Compare (Ediff)" menu-bar-ediff-menu
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1072 :help "Display differences between files/directories"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1073
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1074
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1075 (define-key menu-bar-tools-menu [separator-spell]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1076 '("--"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1077
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1078 (define-key menu-bar-tools-menu [spell]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1079 '(menu-item "Spell Checking" ispell-menu-map))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1080
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1081 (define-key menu-bar-tools-menu [separator-prog]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1082 '("--"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1083
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1084 (define-key menu-bar-tools-menu [gdb]
44267
ad3a52185c63 (menu-bar-tools-menu): Rename gdb item to say GDB.
Richard M. Stallman <rms@gnu.org>
parents: 43993
diff changeset
1085 '(menu-item "Debugger (GDB)..." gdb
ad3a52185c63 (menu-bar-tools-menu): Rename gdb item to say GDB.
Richard M. Stallman <rms@gnu.org>
parents: 43993
diff changeset
1086 :help "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
1087 (define-key menu-bar-tools-menu [shell-on-region]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1088 '(menu-item "Shell Command on Region..." shell-command-on-region
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1089 :enable mark-active
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1090 :help "Pass marked region to a shell command"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1091 (define-key menu-bar-tools-menu [shell]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1092 '(menu-item "Shell Command..." shell-command
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1093 :help "Invoke a shell command and catch its output"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1094 (define-key menu-bar-tools-menu [compile]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1095 '(menu-item "Compile..." compile
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1096 :help "Invoke compiler or Make, view compilation errors"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1097 (define-key menu-bar-tools-menu [grep]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1098 '(menu-item "Search Files (Grep)..." grep
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1099 :help "Search files for strings or regexps (with Grep)"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1100
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1101
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1102 ;; The "Help" menu items
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1103
20336
6c26b3f61e02 (menu-bar-help-menu): Reorganize into more submenus.
Richard M. Stallman <rms@gnu.org>
parents: 19793
diff changeset
1104 (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
1105
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1106 (define-key menu-bar-describe-menu [mule-diag]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1107 '(menu-item "Show All of Mule Status" mule-diag
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1108 :visible default-enable-multibyte-characters
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1109 :help "Display multilingual environment settings"))
41475
11d8d3ad5061 (menu-bar-apropos-menu): Moved all `apropos' bindings here.
Sam Steingold <sds@gnu.org>
parents: 41216
diff changeset
1110 (define-key menu-bar-describe-menu [describe-coding-system-briefly]
11d8d3ad5061 (menu-bar-apropos-menu): Moved all `apropos' bindings here.
Sam Steingold <sds@gnu.org>
parents: 41216
diff changeset
1111 '(menu-item "Describe Coding System (Briefly)..."
11d8d3ad5061 (menu-bar-apropos-menu): Moved all `apropos' bindings here.
Sam Steingold <sds@gnu.org>
parents: 41216
diff changeset
1112 describe-current-coding-system-briefly
11d8d3ad5061 (menu-bar-apropos-menu): Moved all `apropos' bindings here.
Sam Steingold <sds@gnu.org>
parents: 41216
diff changeset
1113 :visible default-enable-multibyte-characters))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1114 (define-key menu-bar-describe-menu [describe-coding-system]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1115 '(menu-item "Describe Coding System..." describe-coding-system
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1116 :visible default-enable-multibyte-characters))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1117 (define-key menu-bar-describe-menu [describe-input-method]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1118 '(menu-item "Describe Input Method..." describe-input-method
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1119 :visible default-enable-multibyte-characters
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1120 :help "Keyboard layout for specific input method"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1121 (define-key menu-bar-describe-menu [describe-language-environment]
28557
6f1d9b65d1f8 (menu-bar-options-menu): Make `mule' always visible.
Dave Love <fx@gnu.org>
parents: 28258
diff changeset
1122 (list 'menu-item "Describe Language Environment"
6f1d9b65d1f8 (menu-bar-options-menu): Make `mule' always visible.
Dave Love <fx@gnu.org>
parents: 28258
diff changeset
1123 describe-language-environment-map
6f1d9b65d1f8 (menu-bar-options-menu): Make `mule' always visible.
Dave Love <fx@gnu.org>
parents: 28258
diff changeset
1124 :help "Show multilingual settings for a specific language"))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1125
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1126 (define-key menu-bar-describe-menu [separator-desc-mule]
28557
6f1d9b65d1f8 (menu-bar-options-menu): Make `mule' always visible.
Dave Love <fx@gnu.org>
parents: 28258
diff changeset
1127 '("--"))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1128
20336
6c26b3f61e02 (menu-bar-help-menu): Reorganize into more submenus.
Richard M. Stallman <rms@gnu.org>
parents: 19793
diff changeset
1129 (define-key menu-bar-describe-menu [list-keybindings]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1130 '(menu-item "List Key Bindings" describe-bindings
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1131 :help "Display a list of all current keybindings"))
41475
11d8d3ad5061 (menu-bar-apropos-menu): Moved all `apropos' bindings here.
Sam Steingold <sds@gnu.org>
parents: 41216
diff changeset
1132 (define-key menu-bar-describe-menu [describe-current-display-table]
11d8d3ad5061 (menu-bar-apropos-menu): Moved all `apropos' bindings here.
Sam Steingold <sds@gnu.org>
parents: 41216
diff changeset
1133 '(menu-item "Describe Display Table" describe-current-display-table
11d8d3ad5061 (menu-bar-apropos-menu): Moved all `apropos' bindings here.
Sam Steingold <sds@gnu.org>
parents: 41216
diff changeset
1134 :help "Describe the current display table"))
11d8d3ad5061 (menu-bar-apropos-menu): Moved all `apropos' bindings here.
Sam Steingold <sds@gnu.org>
parents: 41216
diff changeset
1135 (define-key menu-bar-describe-menu [describe-face]
11d8d3ad5061 (menu-bar-apropos-menu): Moved all `apropos' bindings here.
Sam Steingold <sds@gnu.org>
parents: 41216
diff changeset
1136 '(menu-item "Describe Face..." describe-face
11d8d3ad5061 (menu-bar-apropos-menu): Moved all `apropos' bindings here.
Sam Steingold <sds@gnu.org>
parents: 41216
diff changeset
1137 :help "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
1138 (define-key menu-bar-describe-menu [describe-variable]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1139 '(menu-item "Describe Variable..." describe-variable
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1140 :help "Display documentation of variable/option"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1141 (define-key menu-bar-describe-menu [describe-function]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1142 '(menu-item "Describe Function..." describe-function
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1143 :help "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
1144 (define-key menu-bar-describe-menu [describe-key-1]
710d401ff225 (menu-bar-describe-menu): Add "What's This?" item.
Richard M. Stallman <rms@gnu.org>
parents: 48407
diff changeset
1145 '(menu-item "Describe Key..." describe-key
710d401ff225 (menu-bar-describe-menu): Add "What's This?" item.
Richard M. Stallman <rms@gnu.org>
parents: 48407
diff changeset
1146 ;; Users typically don't identify keys and menu items...
710d401ff225 (menu-bar-describe-menu): Add "What's This?" item.
Richard M. Stallman <rms@gnu.org>
parents: 48407
diff changeset
1147 :help "Display documentation of command bound to a \
710d401ff225 (menu-bar-describe-menu): Add "What's This?" item.
Richard M. Stallman <rms@gnu.org>
parents: 48407
diff changeset
1148 key (or menu-item)"))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1149 (define-key menu-bar-describe-menu [describe-key]
48524
710d401ff225 (menu-bar-describe-menu): Add "What's This?" item.
Richard M. Stallman <rms@gnu.org>
parents: 48407
diff changeset
1150 '(menu-item "What's This? " describe-key
28557
6f1d9b65d1f8 (menu-bar-options-menu): Make `mule' always visible.
Dave Love <fx@gnu.org>
parents: 28258
diff changeset
1151 ;; Users typically don't identify keys and menu items...
6f1d9b65d1f8 (menu-bar-options-menu): Make `mule' always visible.
Dave Love <fx@gnu.org>
parents: 28258
diff changeset
1152 :help "Display documentation of command bound to a \
6f1d9b65d1f8 (menu-bar-options-menu): Make `mule' always visible.
Dave Love <fx@gnu.org>
parents: 28258
diff changeset
1153 key (or menu-item)"))
20336
6c26b3f61e02 (menu-bar-help-menu): Reorganize into more submenus.
Richard M. Stallman <rms@gnu.org>
parents: 19793
diff changeset
1154 (define-key menu-bar-describe-menu [describe-mode]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1155 '(menu-item "Describe Buffer Modes" describe-mode
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1156 :help "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
1157
41475
11d8d3ad5061 (menu-bar-apropos-menu): Moved all `apropos' bindings here.
Sam Steingold <sds@gnu.org>
parents: 41216
diff changeset
1158 (defvar menu-bar-apropos-menu (make-sparse-keymap "Apropos"))
41703
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1159 (defun menu-bar-read-lispref ()
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1160 "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
1161 (interactive)
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1162 (info "elisp"))
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1163
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1164 (defun menu-bar-read-lispintro ()
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1165 "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
1166 (interactive)
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1167 (info "eintr"))
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1168
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1169 (defun search-emacs-glossary ()
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1170 "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
1171 (interactive)
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1172 (info "(emacs)Glossary"))
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1173
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1174 (defun emacs-index-search (topic)
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1175 "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
1176 (interactive "sSubject to look up: ")
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1177 (info "emacs")
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1178 (Info-index topic))
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1179
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1180 (defun elisp-index-search (topic)
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1181 "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
1182 (interactive "sSubject to look up: ")
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1183 (info "elisp")
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1184 (Info-index topic))
41475
11d8d3ad5061 (menu-bar-apropos-menu): Moved all `apropos' bindings here.
Sam Steingold <sds@gnu.org>
parents: 41216
diff changeset
1185
11d8d3ad5061 (menu-bar-apropos-menu): Moved all `apropos' bindings here.
Sam Steingold <sds@gnu.org>
parents: 41216
diff changeset
1186 (define-key menu-bar-apropos-menu [apropos-documentation]
41703
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1187 '(menu-item "Search Documentation Strings..." apropos-documentation
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1188 :help
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1189 "Find functions and variables whose doc strings match a regexp"))
41475
11d8d3ad5061 (menu-bar-apropos-menu): Moved all `apropos' bindings here.
Sam Steingold <sds@gnu.org>
parents: 41216
diff changeset
1190 (define-key menu-bar-apropos-menu [apropos]
41703
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1191 '(menu-item "Find Any Object by Name..." apropos
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1192 :help "Find symbols of any kind whose names match a regexp"))
41475
11d8d3ad5061 (menu-bar-apropos-menu): Moved all `apropos' bindings here.
Sam Steingold <sds@gnu.org>
parents: 41216
diff changeset
1193 (define-key menu-bar-apropos-menu [apropos-value]
41703
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1194 '(menu-item "Find Options by Value..." apropos-value
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1195 :help "Find variables whose values match a regexp"))
41475
11d8d3ad5061 (menu-bar-apropos-menu): Moved all `apropos' bindings here.
Sam Steingold <sds@gnu.org>
parents: 41216
diff changeset
1196 (define-key menu-bar-apropos-menu [apropos-variables]
41703
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1197 '(menu-item "Find Options by Name..." apropos-variable
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1198 :help "Find variables whose names match a regexp"))
41475
11d8d3ad5061 (menu-bar-apropos-menu): Moved all `apropos' bindings here.
Sam Steingold <sds@gnu.org>
parents: 41216
diff changeset
1199 (define-key menu-bar-apropos-menu [apropos-commands]
41703
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1200 '(menu-item "Find Commands by Name..." apropos-command
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1201 :help "Find commands whose names match a regexp"))
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1202 (define-key menu-bar-apropos-menu [sep1]
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1203 '("--"))
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1204 (define-key menu-bar-apropos-menu [elisp-index-search]
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1205 '(menu-item "Look Up Subject in ELisp Manual..." elisp-index-search
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1206 :help "Find description of a subject in Emacs Lisp manual"))
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1207 (define-key menu-bar-apropos-menu [emacs-index-search]
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1208 '(menu-item "Look Up Subject in User Manual..." emacs-index-search
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1209 :help "Find description of a subject in Emacs User manual"))
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1210 (define-key menu-bar-apropos-menu [emacs-glossary]
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1211 '(menu-item "Emacs Terminology" search-emacs-glossary
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1212 :help "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
1213
41703
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1214 (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
1215
6c26b3f61e02 (menu-bar-help-menu): Reorganize into more submenus.
Richard M. Stallman <rms@gnu.org>
parents: 19793
diff changeset
1216 (define-key menu-bar-manuals-menu [man]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1217 '(menu-item "Read Man Page..." manual-entry
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1218 :help "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
1219 (define-key menu-bar-manuals-menu [sep2]
6c26b3f61e02 (menu-bar-help-menu): Reorganize into more submenus.
Richard M. Stallman <rms@gnu.org>
parents: 19793
diff changeset
1220 '("--"))
41703
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1221 (define-key menu-bar-manuals-menu [order-emacs-manuals]
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1222 '(menu-item "Ordering Manuals" view-order-manuals
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1223 :help "How to order manuals from the Free Software Foundation"))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1224 (define-key menu-bar-manuals-menu [info]
41703
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1225 '(menu-item "All Other Manuals (Info)" Info-directory
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1226 :help "Read any of the installed manuals"))
41703
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1227 (define-key menu-bar-manuals-menu [info-elisp]
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1228 '(menu-item "Emacs Lisp Reference" menu-bar-read-lispref
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1229 :help "Read the Emacs Lisp Reference manual"))
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1230 (define-key menu-bar-manuals-menu [info-elintro]
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1231 '(menu-item "Introduction to Emacs Lisp" menu-bar-read-lispintro
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1232 :help "Read the Introduction to Emacs Lisp Programming"))
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1233 (define-key menu-bar-manuals-menu [sep3]
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1234 '("--"))
20336
6c26b3f61e02 (menu-bar-help-menu): Reorganize into more submenus.
Richard M. Stallman <rms@gnu.org>
parents: 19793
diff changeset
1235 (define-key menu-bar-manuals-menu [command]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1236 '(menu-item "Find Command in Manual" Info-goto-emacs-command-node
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1237 :help "Display manual section that describes a command"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1238 (define-key menu-bar-manuals-menu [key]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1239 '(menu-item "Find Key in Manual" Info-goto-emacs-key-command-node
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1240 :help "Display manual section that describes a key"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1241
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1242 (define-key menu-bar-help-menu [eliza]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1243 '(menu-item "Emacs Psychiatrist" doctor
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1244 :help "Our doctor will help you feel better"))
41703
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1245 (define-key menu-bar-help-menu [sep4]
20336
6c26b3f61e02 (menu-bar-help-menu): Reorganize into more submenus.
Richard M. Stallman <rms@gnu.org>
parents: 19793
diff changeset
1246 '("--"))
20762
ec3a35db5352 (menu-bar-file-menu): Add Recover Session menu item.
Richard M. Stallman <rms@gnu.org>
parents: 20647
diff changeset
1247 (define-key menu-bar-help-menu [describe-no-warranty]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1248 '(menu-item "(Non)Warranty" describe-no-warranty
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1249 :help "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
1250 (define-key menu-bar-help-menu [describe-copying]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1251 '(menu-item "Copying Conditions" describe-copying
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1252 :help "Show the Emacs license (GPL)"))
20762
ec3a35db5352 (menu-bar-file-menu): Add Recover Session menu item.
Richard M. Stallman <rms@gnu.org>
parents: 20647
diff changeset
1253 (define-key menu-bar-help-menu [describe-distribution]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1254 '(menu-item "Getting New Versions" describe-distribution
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1255 :help "How to get latest versions of Emacs"))
32932
dcf315209a36 Modify some menu item help strings.
Dave Love <fx@gnu.org>
parents: 32876
diff changeset
1256 (define-key menu-bar-help-menu [more]
dcf315209a36 Modify some menu item help strings.
Dave Love <fx@gnu.org>
parents: 32876
diff changeset
1257 '(menu-item "Find Extra Packages"
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1258 menu-bar-help-extra-packages
32932
dcf315209a36 Modify some menu item help strings.
Dave Love <fx@gnu.org>
parents: 32876
diff changeset
1259 :help "Where to find some extra packages and possible updates"))
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1260 (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
1261 "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
1262 (interactive)
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1263 (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
1264 (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
1265 data-directory))
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1266 (goto-address)))
43018
9b786fc11812 (menu-bar-help-menu): Change menu-item "Show Emacs Version" to "About
Pavel Janík <Pavel@Janik.cz>
parents: 42994
diff changeset
1267 (define-key menu-bar-help-menu [about]
9b786fc11812 (menu-bar-help-menu): Change menu-item "Show Emacs Version" to "About
Pavel Janík <Pavel@Janik.cz>
parents: 42994
diff changeset
1268 '(menu-item "About Emacs" display-splash-screen
43086
2f5ddf0e74ba (menu-bar-help-menu): Use different text for tool-tip.
Pavel Janík <Pavel@Janik.cz>
parents: 43020
diff changeset
1269 :help "Display version number, copyright info, and basic help"))
20336
6c26b3f61e02 (menu-bar-help-menu): Reorganize into more submenus.
Richard M. Stallman <rms@gnu.org>
parents: 19793
diff changeset
1270 (define-key menu-bar-help-menu [sep2]
6c26b3f61e02 (menu-bar-help-menu): Reorganize into more submenus.
Richard M. Stallman <rms@gnu.org>
parents: 19793
diff changeset
1271 '("--"))
12558
98c9ac60aa20 (menu-bar-help-menu): Add finder-by-keyword.
Karl Heuer <kwzh@gnu.org>
parents: 12434
diff changeset
1272 (define-key menu-bar-help-menu [finder-by-keyword]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1273 '(menu-item "Find Emacs Packages..." finder-by-keyword
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1274 :help "Find packages and features by keyword"))
41703
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1275 (define-key menu-bar-help-menu [manuals]
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1276 (list 'menu-item "More Manuals" menu-bar-manuals-menu
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1277 :help "Search and browse on-line manuals"))
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1278 (define-key menu-bar-help-menu [emacs-manual]
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1279 '(menu-item "Read the Emacs Manual" info-emacs-manual
41703
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1280 :help "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
1281 (define-key menu-bar-help-menu [describe]
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1282 (list 'menu-item "Describe" menu-bar-describe-menu
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1283 :help "Describe commands, variables, keys"))
41703
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1284 (define-key menu-bar-help-menu [apropos]
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1285 (list 'menu-item "Search Documentation" menu-bar-apropos-menu
5ef9446a197a (menu-bar-read-lispref, menu-bar-read-lispintro)
Eli Zaretskii <eliz@gnu.org>
parents: 41475
diff changeset
1286 :help "Look up terms, find commands, options, etc. (Apropos)"))
20336
6c26b3f61e02 (menu-bar-help-menu): Reorganize into more submenus.
Richard M. Stallman <rms@gnu.org>
parents: 19793
diff changeset
1287 (define-key menu-bar-help-menu [sep1]
6c26b3f61e02 (menu-bar-help-menu): Reorganize into more submenus.
Richard M. Stallman <rms@gnu.org>
parents: 19793
diff changeset
1288 '("--"))
27730
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1289 (define-key menu-bar-help-menu [report-emacs-bug]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1290 '(menu-item "Send Bug Report..." report-emacs-bug
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1291 :help "Send e-mail to Emacs maintainers"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1292 (define-key menu-bar-help-menu [emacs-problems]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1293 '(menu-item "Emacs Known Problems" view-emacs-problems))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1294 (define-key menu-bar-help-menu [emacs-news]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1295 '(menu-item "Emacs News" view-emacs-news
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1296 :help "New features of this version"))
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1297 (define-key menu-bar-help-menu [emacs-faq]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1298 '(menu-item "Emacs FAQ" view-emacs-FAQ))
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1299
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1300 (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
1301 "Use the Emacs tutorial, specifying which language you want."
49597
e88404e8f2cf Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49012
diff changeset
1302 (interactive)
46908
70c39fa2253e (menu-bar-next-tag-other-window, menu-bar-next-tag)
Richard M. Stallman <rms@gnu.org>
parents: 46102
diff changeset
1303 (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
1304
29685
90ecedc87917 (menu-bar-help-menu): Add menu item for non-English
Gerd Moellmann <gerd@gnu.org>
parents: 29586
diff changeset
1305 (define-key menu-bar-help-menu [emacs-tutorial-language-specific]
90ecedc87917 (menu-bar-help-menu): Add menu item for non-English
Gerd Moellmann <gerd@gnu.org>
parents: 29586
diff changeset
1306 '(menu-item "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
1307 help-with-tutorial-spec-language
29685
90ecedc87917 (menu-bar-help-menu): Add menu item for non-English
Gerd Moellmann <gerd@gnu.org>
parents: 29586
diff changeset
1308 :help "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
1309 (define-key menu-bar-help-menu [emacs-tutorial]
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1310 '(menu-item "Emacs Tutorial" help-with-tutorial
06431476ce02 (global-map): Menu-bar items converted to the new
Eli Zaretskii <eliz@gnu.org>
parents: 27325
diff changeset
1311 :help "Learn how to use Emacs"))
2178
76da020d14f8 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2177
diff changeset
1312
2175
61d3483521d7 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1313 (defun kill-this-buffer () ; for the menubar
28557
6f1d9b65d1f8 (menu-bar-options-menu): Make `mule' always visible.
Dave Love <fx@gnu.org>
parents: 28258
diff changeset
1314 "Kill the current buffer."
2175
61d3483521d7 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1315 (interactive)
61d3483521d7 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1316 (kill-buffer (current-buffer)))
61d3483521d7 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1317
2178
76da020d14f8 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2177
diff changeset
1318 (defun kill-this-buffer-enabled-p ()
76da020d14f8 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2177
diff changeset
1319 (let ((count 0)
76da020d14f8 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2177
diff changeset
1320 (buffers (buffer-list)))
76da020d14f8 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2177
diff changeset
1321 (while buffers
76da020d14f8 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2177
diff changeset
1322 (or (string-match "^ " (buffer-name (car buffers)))
76da020d14f8 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2177
diff changeset
1323 (setq count (1+ count)))
76da020d14f8 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2177
diff changeset
1324 (setq buffers (cdr buffers)))
16619
4f8448158c10 In enable predicates in Files menu, use menu-updating-frame.
Richard M. Stallman <rms@gnu.org>
parents: 15996
diff changeset
1325 (and (not (window-minibuffer-p (frame-selected-window menu-updating-frame)))
11525
3bd7735bba9b Disable many Files menu items in minibuffer.
Richard M. Stallman <rms@gnu.org>
parents: 11325
diff changeset
1326 (> count 1))))
3bd7735bba9b Disable many Files menu items in minibuffer.
Richard M. Stallman <rms@gnu.org>
parents: 11325
diff changeset
1327
3bd7735bba9b Disable many Files menu items in minibuffer.
Richard M. Stallman <rms@gnu.org>
parents: 11325
diff changeset
1328 (put 'dired 'menu-enable
16619
4f8448158c10 In enable predicates in Files menu, use menu-updating-frame.
Richard M. Stallman <rms@gnu.org>
parents: 15996
diff changeset
1329 '(not (window-minibuffer-p (frame-selected-window menu-updating-frame))))
11525
3bd7735bba9b Disable many Files menu items in minibuffer.
Richard M. Stallman <rms@gnu.org>
parents: 11325
diff changeset
1330
4337
cda282328afd (delete-frame): Permit it, if > 1 frame is vis or iconic.
Richard M. Stallman <rms@gnu.org>
parents: 4160
diff changeset
1331 ;; 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
1332 (defun delete-frame-enabled-p ()
937c7fced6ee (delete-frame-enabled-p): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents: 11753
diff changeset
1333 "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
1334 (let ((frames (frame-list))
15471
f0b473ee47a5 Whitespace change.
Richard M. Stallman <rms@gnu.org>
parents: 14792
diff changeset
1335 (count 0))
f0b473ee47a5 Whitespace change.
Richard M. Stallman <rms@gnu.org>
parents: 14792
diff changeset
1336 (while frames
f0b473ee47a5 Whitespace change.
Richard M. Stallman <rms@gnu.org>
parents: 14792
diff changeset
1337 (if (frame-visible-p (car frames))
f0b473ee47a5 Whitespace change.
Richard M. Stallman <rms@gnu.org>
parents: 14792
diff changeset
1338 (setq count (1+ count)))
f0b473ee47a5 Whitespace change.
Richard M. Stallman <rms@gnu.org>
parents: 14792
diff changeset
1339 (setq frames (cdr frames)))
f0b473ee47a5 Whitespace change.
Richard M. Stallman <rms@gnu.org>
parents: 14792
diff changeset
1340 (> count 1)))
2178
76da020d14f8 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2177
diff changeset
1341
17665
b11021ca3525 Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17615
diff changeset
1342 (defcustom yank-menu-length 20
b11021ca3525 Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17615
diff changeset
1343 "*Maximum length to display in the yank-menu."
b11021ca3525 Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17615
diff changeset
1344 :type 'integer
b11021ca3525 Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17615
diff changeset
1345 :group 'mouse)
3795
d59af8c9bc65 (mouse-menu-choose-yank): New function. Put it in the edit menu.
Richard M. Stallman <rms@gnu.org>
parents: 3504
diff changeset
1346
8767
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1347 (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
1348 (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
1349 (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
1350 string
10590
9f68d8d6357b (menu-bar-update-yank-menu): If string is too long,
Richard M. Stallman <rms@gnu.org>
parents: 9667
diff changeset
1351 (concat
9f68d8d6357b (menu-bar-update-yank-menu): If string is too long,
Richard M. Stallman <rms@gnu.org>
parents: 9667
diff changeset
1352 (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
1353 "..."
9f68d8d6357b (menu-bar-update-yank-menu): If string is too long,
Richard M. Stallman <rms@gnu.org>
parents: 9667
diff changeset
1354 (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
1355 ;; 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
1356 ;; 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
1357 (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
1358 (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
1359 ;; 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
1360 ;; 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
1361 (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
1362 (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
1363 (progn
8767
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1364 (setcar front string)
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1365 (setcar (cdr front) menu-string))
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1366 (setcdr yank-menu
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1367 (cons
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1368 (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
1369 (cdr yank-menu)))))
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1370 (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
1371 (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
1372
20481
77ed0446c90a (menu-bar-select-yank): Add apropos-inhibit property.
Richard M. Stallman <rms@gnu.org>
parents: 20342
diff changeset
1373 (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
1374 (defun menu-bar-select-yank ()
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1375 (interactive "*")
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1376 (push-mark (point))
441af4b664ac (yank-menu): New variable; kill-ring in menu format.
Karl Heuer <kwzh@gnu.org>
parents: 8525
diff changeset
1377 (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
1378
2181
5a9d9dcc4750 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2178
diff changeset
1379
44803
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1380 (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
1381 "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
1382 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
1383 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
1384 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
1385 from other buffers).
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1386
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1387 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
1388 Buffers menu is regenerated."
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1389 :set (lambda (symbol value)
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1390 (set symbol value)
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1391 (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
1392 :initialize 'custom-initialize-default
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1393 :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
1394 (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
1395 (const :tag "Always" t))
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1396 :group 'menu)
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1397
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1398 (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
1399 "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
1400 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
1401 Buffers menu is regenerated."
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1402 :set (lambda (symbol value)
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1403 (set symbol value)
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1404 (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
1405 :initialize 'custom-initialize-default
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1406 :type 'boolean
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1407 :group 'menu)
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1408
4628
e55cc9fdaa92 (list-buffers-directory): Add declaration.
Richard M. Stallman <rms@gnu.org>
parents: 4603
diff changeset
1409 (defvar list-buffers-directory nil)
e55cc9fdaa92 (list-buffers-directory): Add declaration.
Richard M. Stallman <rms@gnu.org>
parents: 4603
diff changeset
1410
9667
49eee3cb0ffa (menu-bar-file-menu): Add item `Make Frame On Display'.
Richard M. Stallman <rms@gnu.org>
parents: 9518
diff changeset
1411 (defvar menu-bar-update-buffers-maxbuf)
49eee3cb0ffa (menu-bar-file-menu): Add item `Make Frame On Display'.
Richard M. Stallman <rms@gnu.org>
parents: 9518
diff changeset
1412
7150
b78bfe054561 Make a sub-keymap for the Buffers menu bar item.
Richard M. Stallman <rms@gnu.org>
parents: 6948
diff changeset
1413 (defun menu-bar-select-buffer ()
b78bfe054561 Make a sub-keymap for the Buffers menu bar item.
Richard M. Stallman <rms@gnu.org>
parents: 6948
diff changeset
1414 (interactive)
b78bfe054561 Make a sub-keymap for the Buffers menu bar item.
Richard M. Stallman <rms@gnu.org>
parents: 6948
diff changeset
1415 (switch-to-buffer last-command-event))
b78bfe054561 Make a sub-keymap for the Buffers menu bar item.
Richard M. Stallman <rms@gnu.org>
parents: 6948
diff changeset
1416
b78bfe054561 Make a sub-keymap for the Buffers menu bar item.
Richard M. Stallman <rms@gnu.org>
parents: 6948
diff changeset
1417 (defun menu-bar-select-frame ()
b78bfe054561 Make a sub-keymap for the Buffers menu bar item.
Richard M. Stallman <rms@gnu.org>
parents: 6948
diff changeset
1418 (interactive)
36072
a692c3e3a379 (menu-bar-select-frame): Adjust for
Dave Love <fx@gnu.org>
parents: 35684
diff changeset
1419 (let (frame)
a692c3e3a379 (menu-bar-select-frame): Adjust for
Dave Love <fx@gnu.org>
parents: 35684
diff changeset
1420 (dolist (f (frame-list))
a692c3e3a379 (menu-bar-select-frame): Adjust for
Dave Love <fx@gnu.org>
parents: 35684
diff changeset
1421 (when (equal last-command-event (frame-parameter f 'name))
a692c3e3a379 (menu-bar-select-frame): Adjust for
Dave Love <fx@gnu.org>
parents: 35684
diff changeset
1422 (setq frame f)))
a692c3e3a379 (menu-bar-select-frame): Adjust for
Dave Love <fx@gnu.org>
parents: 35684
diff changeset
1423 (make-frame-visible frame)
a692c3e3a379 (menu-bar-select-frame): Adjust for
Dave Love <fx@gnu.org>
parents: 35684
diff changeset
1424 (raise-frame frame)
a692c3e3a379 (menu-bar-select-frame): Adjust for
Dave Love <fx@gnu.org>
parents: 35684
diff changeset
1425 (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
1426
9518
69072971d37e (menu-bar-update-buffers-1): New subroutine
Richard M. Stallman <rms@gnu.org>
parents: 9422
diff changeset
1427 (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
1428 (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
1429 (file
44803
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1430 (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
1431 (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
1432 (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
1433 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
1434 (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
1435 (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
1436 (when file
f2802fbc2d65 (menu-bar-update-buffers-1): Don't display a directory separator if
Miles Bader <miles@gnu.org>
parents: 44770
diff changeset
1437 (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
1438 (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
1439 (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
1440 (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
1441 (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
1442 (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
1443 (if file
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1444 (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
1445 (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
1446 (if file
de50fca9a8aa (buffers-menu-show-directories, buffers-menu-show-status): New variables.
Miles Bader <miles@gnu.org>
parents: 44797
diff changeset
1447 (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
1448 (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
1449 buf)))
f2802fbc2d65 (menu-bar-update-buffers-1): Don't display a directory separator if
Miles Bader <miles@gnu.org>
parents: 44770
diff changeset
1450
44770
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
1451 ;; 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
1452 (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
1453
36230
56577cf3e384 (menu-bar-update-buffers): Add optional parameter
Gerd Moellmann <gerd@gnu.org>
parents: 36072
diff changeset
1454 (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
1455 ;; 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
1456 (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
1457 (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
1458 (let ((buffers (buffer-list))
abf26f5c67e4 (menu-bar-update-buffers): If Buffers item is gone,
Richard M. Stallman <rms@gnu.org>
parents: 8229
diff changeset
1459 (frames (frame-list))
abf26f5c67e4 (menu-bar-update-buffers): If Buffers item is gone,
Richard M. Stallman <rms@gnu.org>
parents: 8229
diff changeset
1460 buffers-menu frames-menu)
abf26f5c67e4 (menu-bar-update-buffers): If Buffers item is gone,
Richard M. Stallman <rms@gnu.org>
parents: 8229
diff changeset
1461 ;; 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
1462 (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
1463 (> 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
1464 (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
1465 (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
1466
8316
abf26f5c67e4 (menu-bar-update-buffers): If Buffers item is gone,
Richard M. Stallman <rms@gnu.org>
parents: 8229
diff changeset
1467 ;; 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
1468 (setq buffers-menu
44768
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1469 (let* ((buffer-list
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1470 (mapcar 'list buffers))
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1471 (menu-bar-update-buffers-maxbuf 0)
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1472 alist)
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1473 ;; 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
1474 ;; the name for actual display,
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1475 ;; perhaps truncated in the middle.
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1476 (dolist (buf buffer-list)
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1477 (let ((name (buffer-name (car buf))))
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1478 (setcdr buf
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1479 (if (> (length name) 27)
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1480 (concat (substring name 0 12)
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1481 "..."
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1482 (substring name -12))
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1483 name))))
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1484 ;; Compute the maximum length of any name.
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1485 (dolist (buf buffer-list)
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1486 (unless (eq ?\ (aref (cdr buf) 0))
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1487 (setq menu-bar-update-buffers-maxbuf
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1488 (max menu-bar-update-buffers-maxbuf
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1489 (length (cdr buf))))))
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1490 ;; Set ALIST to an alist of the form
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1491 ;; ITEM-STRING . BUFFER
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1492 (dolist (buf buffer-list)
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1493 (unless (eq ?\ (aref (cdr buf) 0))
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1494 (push (menu-bar-update-buffers-1 buf) alist)))
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1495 ;; Now make the actual list of items, and add
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1496 ;; some miscellaneous buffer commands to the end.
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1497 (mapcar (lambda (pair)
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1498 ;; This is somewhat risque, to use
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1499 ;; the buffer name itself as the event
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1500 ;; type to define, but it works.
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1501 ;; It would not work to use the buffer
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1502 ;; since a buffer as an event has its
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1503 ;; own meaning.
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1504 (nconc (list (buffer-name (cdr pair))
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1505 (car pair)
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1506 (cons nil nil))
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1507 'menu-bar-select-buffer))
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1508 (nreverse alist))))
7239
385ac6718f28 (menu-bar-update-buffers): Fix misspelled variable.
Karl Heuer <kwzh@gnu.org>
parents: 7234
diff changeset
1509
8316
abf26f5c67e4 (menu-bar-update-buffers): If Buffers item is gone,
Richard M. Stallman <rms@gnu.org>
parents: 8229
diff changeset
1510 ;; 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
1511 (when (cdr frames)
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1512 (let ((frames-menu
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1513 (cons 'keymap
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1514 (cons "Select Frame"
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1515 (mapcar
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1516 (lambda (frame)
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1517 (nconc
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1518 (list (frame-parameter frame 'name)
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1519 (frame-parameter frame 'name)
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1520 (cons nil nil))
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1521 'menu-bar-select-frame))
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1522 frames)))))
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1523 ;; Put it after the normal buffers
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1524 (setq buffers-menu
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1525 (nconc buffers-menu
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1526 `((frames-separator "--")
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1527 (frames menu-item "Frames" ,frames-menu))))))
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1528
44770
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
1529 ;; 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
1530 ;; 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
1531 ;; 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
1532 ;; 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
1533 ;; modifies them.
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
1534 (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
1535 (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
1536 (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
1537 (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
1538 '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
1539 "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
1540 '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
1541 :help "Switch to the \"next\" buffer in a cyclic order")
5e84d4496348 (menu-bar-update-buffers): Add menu items Next Buffer and Previous Buffer.
Richard M. Stallman <rms@gnu.org>
parents: 44817
diff changeset
1542 (list 'prev-buffer
5e84d4496348 (menu-bar-update-buffers): Add menu items Next Buffer and Previous Buffer.
Richard M. Stallman <rms@gnu.org>
parents: 44817
diff changeset
1543 '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
1544 "Previous Buffer"
5e84d4496348 (menu-bar-update-buffers): Add menu items Next Buffer and Previous Buffer.
Richard M. Stallman <rms@gnu.org>
parents: 44817
diff changeset
1545 'prev-buffer
5e84d4496348 (menu-bar-update-buffers): Add menu items Next Buffer and Previous Buffer.
Richard M. Stallman <rms@gnu.org>
parents: 44817
diff changeset
1546 :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
1547 (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
1548 'menu-item
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
1549 "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
1550 '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
1551 :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
1552 (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
1553 'menu-item
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
1554 "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
1555 'list-buffers
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
1556 :help "Pop up a window listing all emacs buffers"
cdbaa6173481 (menu-bar-update-buffers): Don't use constant lists for command menu
Miles Bader <miles@gnu.org>
parents: 44768
diff changeset
1557 ))))
44768
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1558 (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
1559 (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
1560
f362c792ede0 (menu-bar-update-buffers): Add `Select Named Buffer'.
Miles Bader <miles@gnu.org>
parents: 44499
diff changeset
1561 (setq buffers-menu (cons 'keymap (cons "Select Buffer" buffers-menu)))
8347
0fff2106fa43 (menu-bar-update-buffers): Use (current-global-map), not global-map.
Richard M. Stallman <rms@gnu.org>
parents: 8320
diff changeset
1562 (define-key (current-global-map) [menu-bar buffer]
15996
0704ccc73df8 (menu-bar-update-buffers): Make the Frames menu a submenu of the Buffers menu.
Richard M. Stallman <rms@gnu.org>
parents: 15471
diff changeset
1563 (cons "Buffers" buffers-menu)))))
2181
5a9d9dcc4750 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2178
diff changeset
1564
7150
b78bfe054561 Make a sub-keymap for the Buffers menu bar item.
Richard M. Stallman <rms@gnu.org>
parents: 6948
diff changeset
1565 (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
1566
12633
c05399b944ab (menu-bar-buffer-menu): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents: 12610
diff changeset
1567 (menu-bar-update-buffers)
c05399b944ab (menu-bar-buffer-menu): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents: 12610
diff changeset
1568
2181
5a9d9dcc4750 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2178
diff changeset
1569 ;; this version is too slow
47421
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
1570 ;;(defun format-buffers-menu-line (buffer)
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
1571 ;; "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
1572 ;;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
1573 ;; (if (string-match "\\` " (buffer-name buffer))
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
1574 ;; nil
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
1575 ;; (save-excursion
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
1576 ;; (set-buffer buffer)
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
1577 ;; (let ((size (buffer-size)))
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
1578 ;; (format "%s%s %-19s %6s %-15s %s"
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
1579 ;; (if (buffer-modified-p) "*" " ")
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
1580 ;; (if buffer-read-only "%" " ")
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
1581 ;; (buffer-name)
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
1582 ;; size
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
1583 ;; mode-name
055681adf287 (line-number-mode, column-number-mode)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47296
diff changeset
1584 ;; (or (buffer-file-name) ""))))))
2181
5a9d9dcc4750 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 2178
diff changeset
1585
12427
04bcad1807b9 Make more menu-enables check (not buffer-read-only).
Richard M. Stallman <rms@gnu.org>
parents: 12199
diff changeset
1586 ;;; 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
1587
39844
0433563f559d (minibuffer-local-*map): Take inheritance into account.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39393
diff changeset
1588 (dolist (map (list minibuffer-local-map
0433563f559d (minibuffer-local-*map): Take inheritance into account.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39393
diff changeset
1589 ;; 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
1590 ;; 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
1591 minibuffer-local-completion-map))
ca52130472e7 (minibuffer maps): Use dolist rather than mapcar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 32932
diff changeset
1592 (define-key map [menu-bar minibuf]
ca52130472e7 (minibuffer maps): Use dolist rather than mapcar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 32932
diff changeset
1593 (cons "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
1594
39844
0433563f559d (minibuffer-local-*map): Take inheritance into account.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39393
diff changeset
1595 (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
1596 (define-key map [menu-bar minibuf ?\?]
ca52130472e7 (minibuffer maps): Use dolist rather than mapcar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 32932
diff changeset
1597 (list 'menu-item "List Completions" 'minibuffer-completion-help
ca52130472e7 (minibuffer maps): Use dolist rather than mapcar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 32932
diff changeset
1598 :help "Display all possible completions"))
ca52130472e7 (minibuffer maps): Use dolist rather than mapcar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 32932
diff changeset
1599 (define-key map [menu-bar minibuf space]
ca52130472e7 (minibuffer maps): Use dolist rather than mapcar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 32932
diff changeset
1600 (list 'menu-item "Complete Word" 'minibuffer-complete-word
ca52130472e7 (minibuffer maps): Use dolist rather than mapcar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 32932
diff changeset
1601 :help "Complete at most one word"))
ca52130472e7 (minibuffer maps): Use dolist rather than mapcar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 32932
diff changeset
1602 (define-key map [menu-bar minibuf tab]
ca52130472e7 (minibuffer maps): Use dolist rather than mapcar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 32932
diff changeset
1603 (list 'menu-item "Complete" 'minibuffer-complete
ca52130472e7 (minibuffer maps): Use dolist rather than mapcar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 32932
diff changeset
1604 :help "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
1605
39844
0433563f559d (minibuffer-local-*map): Take inheritance into account.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39393
diff changeset
1606 (let ((map minibuffer-local-map))
33191
ca52130472e7 (minibuffer maps): Use dolist rather than mapcar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 32932
diff changeset
1607 (define-key map [menu-bar minibuf quit]
ca52130472e7 (minibuffer maps): Use dolist rather than mapcar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 32932
diff changeset
1608 (list 'menu-item "Quit" 'keyboard-escape-quit
ca52130472e7 (minibuffer maps): Use dolist rather than mapcar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 32932
diff changeset
1609 :help "Abort input and exit minibuffer"))
ca52130472e7 (minibuffer maps): Use dolist rather than mapcar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 32932
diff changeset
1610 (define-key map [menu-bar minibuf return]
ca52130472e7 (minibuffer maps): Use dolist rather than mapcar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 32932
diff changeset
1611 (list 'menu-item "Enter" 'exit-minibuffer
ca52130472e7 (minibuffer maps): Use dolist rather than mapcar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 32932
diff changeset
1612 :help "Terminate input and exit minibuffer")))
12427
04bcad1807b9 Make more menu-enables check (not buffer-read-only).
Richard M. Stallman <rms@gnu.org>
parents: 12199
diff changeset
1613
43412
ce181770fa8e 2002-02-19 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43383
diff changeset
1614 (defcustom menu-bar-mode t
26614
2616986242eb (menu-bar-mode): Customize.
Dave Love <fx@gnu.org>
parents: 23982
diff changeset
1615 "Toggle display of a menu bar on each frame.
2616986242eb (menu-bar-mode): Customize.
Dave Love <fx@gnu.org>
parents: 23982
diff changeset
1616 Setting this variable directly does not take effect;
2616986242eb (menu-bar-mode): Customize.
Dave Love <fx@gnu.org>
parents: 23982
diff changeset
1617 use either \\[customize] or the function `menu-bar-mode'."
2616986242eb (menu-bar-mode): Customize.
Dave Love <fx@gnu.org>
parents: 23982
diff changeset
1618 :set (lambda (symbol value)
2616986242eb (menu-bar-mode): Customize.
Dave Love <fx@gnu.org>
parents: 23982
diff changeset
1619 (menu-bar-mode (or value 0)))
2616986242eb (menu-bar-mode): Customize.
Dave Love <fx@gnu.org>
parents: 23982
diff changeset
1620 :initialize 'custom-initialize-default
2616986242eb (menu-bar-mode): Customize.
Dave Love <fx@gnu.org>
parents: 23982
diff changeset
1621 :type 'boolean
2616986242eb (menu-bar-mode): Customize.
Dave Love <fx@gnu.org>
parents: 23982
diff changeset
1622 :group 'frames)
8055
6a0af6085c1a (menu-bar-mode): Make this a global variable.
Richard M. Stallman <rms@gnu.org>
parents: 8010
diff changeset
1623
41925
524400c8c8b5 (menu-bar-mode): Make arg optional.
Richard M. Stallman <rms@gnu.org>
parents: 41703
diff changeset
1624 (defun menu-bar-mode (&optional flag)
3007
e41b3dc686bb (menu-bar-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 2847
diff changeset
1625 "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
1626 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
1627 created in the future.
22665
c6d48e73123e (menu-bar-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 22655
diff changeset
1628 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
1629 turn on menu bars; otherwise, turn off menu bars."
47296
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1630 (interactive "P")
4470
6dd518d1f5aa (menu-bar-mode): Defvar removed.
Roland McGrath <roland@gnu.org>
parents: 4337
diff changeset
1631
8055
6a0af6085c1a (menu-bar-mode): Make this a global variable.
Richard M. Stallman <rms@gnu.org>
parents: 8010
diff changeset
1632 ;; Make menu-bar-mode and default-frame-alist consistent.
6a0af6085c1a (menu-bar-mode): Make this a global variable.
Richard M. Stallman <rms@gnu.org>
parents: 8010
diff changeset
1633 (let ((default (assq 'menu-bar-lines default-frame-alist)))
6a0af6085c1a (menu-bar-mode): Make this a global variable.
Richard M. Stallman <rms@gnu.org>
parents: 8010
diff changeset
1634 (if default
6a0af6085c1a (menu-bar-mode): Make this a global variable.
Richard M. Stallman <rms@gnu.org>
parents: 8010
diff changeset
1635 (setq menu-bar-mode (not (eq (cdr default) 0)))
6a0af6085c1a (menu-bar-mode): Make this a global variable.
Richard M. Stallman <rms@gnu.org>
parents: 8010
diff changeset
1636 (setq default-frame-alist
6a0af6085c1a (menu-bar-mode): Make this a global variable.
Richard M. Stallman <rms@gnu.org>
parents: 8010
diff changeset
1637 (cons (cons 'menu-bar-lines (if menu-bar-mode 1 0))
6a0af6085c1a (menu-bar-mode): Make this a global variable.
Richard M. Stallman <rms@gnu.org>
parents: 8010
diff changeset
1638 default-frame-alist))))
4470
6dd518d1f5aa (menu-bar-mode): Defvar removed.
Roland McGrath <roland@gnu.org>
parents: 4337
diff changeset
1639
8055
6a0af6085c1a (menu-bar-mode): Make this a global variable.
Richard M. Stallman <rms@gnu.org>
parents: 8010
diff changeset
1640 ;; Toggle or set the mode, according to FLAG.
47296
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1641 (setq menu-bar-mode (if (null flag) (not menu-bar-mode)
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1642 (> (prefix-numeric-value flag) 0)))
4470
6dd518d1f5aa (menu-bar-mode): Defvar removed.
Roland McGrath <roland@gnu.org>
parents: 4337
diff changeset
1643
47296
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1644 ;; Apply it to default-frame-alist.
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1645 (let ((parameter (assq 'menu-bar-lines default-frame-alist)))
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1646 (if (consp parameter)
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1647 (setcdr parameter (if menu-bar-mode 1 0))
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1648 (setq default-frame-alist
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1649 (cons (cons 'menu-bar-lines (if menu-bar-mode 1 0))
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1650 default-frame-alist))))
4470
6dd518d1f5aa (menu-bar-mode): Defvar removed.
Roland McGrath <roland@gnu.org>
parents: 4337
diff changeset
1651
47296
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1652 ;; Apply it to existing frames.
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1653 (let ((frames (frame-list)))
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1654 (while frames
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1655 (let ((height (cdr (assq 'height (frame-parameters (car frames))))))
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1656 (modify-frame-parameters (car frames)
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1657 (list (cons 'menu-bar-lines
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1658 (if menu-bar-mode 1 0))))
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1659 (modify-frame-parameters (car frames)
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1660 (list (cons 'height height))))
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1661 (setq frames (cdr frames))))
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1662
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1663 (when (interactive-p)
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1664 (if menu-bar-mode
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1665 (message "Menu-bar mode enabled.")
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1666 (message "Menu-bar mode disabled. Use M-x menu-bar-mode to make the menu bar appear."))
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1667 (customize-mark-as-set 'menu-bar-mode))
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1668
8d11b5360234 (menu-bar-make-mm-toggle): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47152
diff changeset
1669 menu-bar-mode)
2485
c34bbe650160 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 2181
diff changeset
1670
2765
0eb1a195f56e Provide 'menu-bar.
Richard M. Stallman <rms@gnu.org>
parents: 2695
diff changeset
1671 (provide 'menu-bar)
0eb1a195f56e Provide 'menu-bar.
Richard M. Stallman <rms@gnu.org>
parents: 2695
diff changeset
1672
2488
278580be9b4a Added and corrected library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2485
diff changeset
1673 ;;; menu-bar.el ends here