(Fprevious_frame): New function, for parity with Fnext_frame.
[bpt/emacs.git] / lisp / frame.el
CommitLineData
dc6d9681 1;;; frame.el --- multi-frame management independent of window systems.
c88ab9ce 2
c0f86408 3;;;; Copyright (C) 1993 Free Software Foundation, Inc.
3a801d0c 4
fc68affa 5;; Maintainer: FSF
fd7fa35a 6;; Keywords: internal
fc68affa 7
64c669bc
JB
8;;; This file is part of GNU Emacs.
9;;;
10;;; GNU Emacs is free software; you can redistribute it and/or modify
11;;; it under the terms of the GNU General Public License as published by
de49a6d3 12;;; the Free Software Foundation; either version 2, or (at your option)
64c669bc
JB
13;;; any later version.
14;;;
15;;; GNU Emacs is distributed in the hope that it will be useful,
16;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;;; GNU General Public License for more details.
19;;;
20;;; You should have received a copy of the GNU General Public License
21;;; along with GNU Emacs; see the file COPYING. If not, write to
22;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23
fc68affa
ER
24;;; Code:
25
dc6d9681
JB
26(defvar frame-creation-function nil
27 "Window-system dependent function to call to create a new frame.
28The window system startup file should set this to its frame creation
64c669bc
JB
29function, which should take an alist of parameters as its argument.")
30
7eadab74
JB
31;;; The initial value given here for this must ask for a minibuffer.
32;;; There must always exist a frame with a minibuffer, and after we
33;;; delete the terminal frame, this will be the only frame.
9e2b097b 34(defvar initial-frame-alist '((minibuffer . t))
eaa974e1
JB
35 "Alist of frame parameters for creating the initial X window frame.
36You can set this in your `.emacs' file; for example,
dc6d9681 37 (setq initial-frame-alist '((top . 1) (left . 1) (width . 80) (height . 55)))
eaa974e1
JB
38If the value calls for a frame without a minibuffer, and you do not create a
39minibuffer frame on your own, one is created according to
7eadab74 40`minibuffer-frame-alist'.
eaa974e1
JB
41Parameters specified here supersede the values given in
42`default-frame-alist'.")
64c669bc 43
7eadab74 44(defvar minibuffer-frame-alist '((width . 80) (height . 2))
eaa974e1
JB
45 "Alist of frame parameters for initially creating a minibuffer frame.
46You can set this in your `.emacs' file; for example,
dc6d9681 47 (setq minibuffer-frame-alist
7eadab74 48 '((top . 1) (left . 1) (width . 80) (height . 2)))
eaa974e1
JB
49Parameters specified here supersede the values given in
50`default-frame-alist'.")
64c669bc 51
dc6d9681 52(defvar pop-up-frame-alist nil
eaa974e1 53 "Alist of frame parameters used when creating pop-up frames.
dc6d9681 54Pop-up frames are used for completions, help, and the like.
64c669bc 55This variable can be set in your init file, like this:
dc6d9681 56 (setq pop-up-frame-alist '((width . 80) (height . 20)))
eb8c3be9 57These supersede the values given in `default-frame-alist'.")
64c669bc 58
dc6d9681 59(setq pop-up-frame-function
64c669bc 60 (function (lambda ()
dc6d9681 61 (new-frame pop-up-frame-alist))))
64c669bc
JB
62
63\f
dc6d9681 64;;;; Arrangement of frames at startup
64c669bc
JB
65
66;;; 1) Load the window system startup file from the lisp library and read the
67;;; high-priority arguments (-q and the like). The window system startup
dc6d9681 68;;; file should create any frames specified in the window system defaults.
64c669bc 69;;;
dc6d9681 70;;; 2) If no frames have been opened, we open an initial text frame.
64c669bc
JB
71;;;
72;;; 3) Once the init file is done, we apply any newly set parameters
dc6d9681 73;;; in initial-frame-alist to the frame.
64c669bc 74
fc4d4afb
RS
75;; These are now called explicitly at the proper times,
76;; since that is easier to understand.
77;; Actually using hooks within Emacs is bad for future maintenance. --rms.
78;; (add-hook 'before-init-hook 'frame-initialize)
79;; (add-hook 'window-setup-hook 'frame-notice-user-settings)
64c669bc 80
dc6d9681
JB
81;;; If we create the initial frame, this is it.
82(defvar frame-initial-frame nil)
64c669bc 83
3f2f8c83
RS
84;; Record the parameters used in frame-initialize to make the initial frame.
85(defvar frame-initial-frame-alist)
86
64c669bc 87;;; startup.el calls this function before loading the user's init
dc6d9681 88;;; file - if there is no frame with a minibuffer open now, create
64c669bc 89;;; one to display messages while loading the init file.
dc6d9681 90(defun frame-initialize ()
64c669bc
JB
91
92 ;; Are we actually running under a window system at all?
93 (if (and window-system (not noninteractive))
7eadab74
JB
94 (progn
95 ;; If there is no frame with a minibuffer besides the terminal
96 ;; frame, then we need to create the opening frame. Make sure
97 ;; it has a minibuffer, but let initial-frame-alist omit the
98 ;; minibuffer spec.
99 (or (delq terminal-frame (minibuffer-frame-list))
36fc9c9f 100 (progn
3f2f8c83
RS
101 (setq frame-initial-frame-alist
102 (append initial-frame-alist default-frame-alist))
36fc9c9f
RS
103 (setq default-minibuffer-frame
104 (setq frame-initial-frame
105 (new-frame initial-frame-alist)))
11281034
RS
106 ;; Delete any specifications for window geometry parameters
107 ;; so that we won't reapply them in frame-notice-user-settings.
108 ;; It would be wrong to reapply them then,
109 ;; because that would override explicit user resizing.
58bf6042
JB
110 (setq initial-frame-alist
111 (frame-remove-geometry-params initial-frame-alist))
36fc9c9f
RS
112 ;; Handle `reverse' as a parameter.
113 (if (cdr (or (assq 'reverse initial-frame-alist)
88046be2 114 (assq 'reverse default-frame-alist)))
36fc9c9f
RS
115 (let ((params (frame-parameters frame-initial-frame)))
116 (modify-frame-parameters
117 frame-initial-frame
949d4ac7
RS
118 ;; Must set cursor-color after background color.
119 ;; So put it first.
118c9082
JB
120 (list (cons 'cursor-color
121 (cdr (assq 'background-color params)))
122 (cons 'foreground-color
123 (cdr (assq 'background-color params)))
124 (cons 'background-color
125 (cdr (assq 'foreground-color params)))
126 (cons 'mouse-color
127 (cdr (assq 'background-color params)))
128 (cons 'border-color
129 (cdr (assq 'background-color params)))))))))
7eadab74 130
dc6d9681
JB
131 ;; At this point, we know that we have a frame open, so we
132 ;; can delete the terminal frame.
133 (delete-frame terminal-frame)
134 (setq terminal-frame nil))
64c669bc
JB
135
136 ;; No, we're not running a window system. Arrange to cause errors.
dc6d9681 137 (setq frame-creation-function
9198945a
MB
138 (function
139 (lambda (parameters)
140 (error
8290babd 141 "Can't create multiple frames without a window system"))))))
64c669bc 142
7eadab74
JB
143;;; startup.el calls this function after loading the user's init
144;;; file. Now default-frame-alist and initial-frame-alist contain
145;;; information to which we must react; do what needs to be done.
dc6d9681 146(defun frame-notice-user-settings ()
7eadab74
JB
147
148 ;; Creating and deleting frames may shift the selected frame around,
149 ;; and thus the current buffer. Protect against that. We don't
150 ;; want to use save-excursion here, because that may also try to set
151 ;; the buffer of the selected window, which fails when the selected
152 ;; window is the minibuffer.
153 (let ((old-buffer (current-buffer)))
154
155 ;; If the initial frame is still around, apply initial-frame-alist
156 ;; and default-frame-alist to it.
157 (if (frame-live-p frame-initial-frame)
158
159 ;; The initial frame we create above always has a minibuffer.
160 ;; If the user wants to remove it, or make it a minibuffer-only
161 ;; frame, then we'll have to delete the current frame and make a
162 ;; new one; you can't remove or add a root window to/from an
163 ;; existing frame.
164 ;;
ec558adc
JB
165 ;; NOTE: default-frame-alist was nil when we created the
166 ;; existing frame. We need to explicitly include
167 ;; default-frame-alist in the parameters of the screen we
168 ;; create here, so that its new value, gleaned from the user's
169 ;; .emacs file, will be applied to the existing screen.
7eadab74
JB
170 (if (not (eq (cdr (or (assq 'minibuffer initial-frame-alist)
171 (assq 'minibuffer default-frame-alist)
172 '(minibuffer . t)))
173 t))
174 ;; Create the new frame.
175 (let ((new
176 (new-frame
177 (append initial-frame-alist
178 default-frame-alist
179 (frame-parameters frame-initial-frame)))))
180
181 ;; The initial frame, which we are about to delete, may be
182 ;; the only frame with a minibuffer. If it is, create a
183 ;; new one.
184 (or (delq frame-initial-frame (minibuffer-frame-list))
185 (new-frame (append minibuffer-frame-alist
186 '((minibuffer . only)))))
187
188 ;; If the initial frame is serving as a surrogate
189 ;; minibuffer frame for any frames, we need to wean them
190 ;; onto a new frame. The default-minibuffer-frame
191 ;; variable must be handled similarly.
192 (let ((users-of-initial
193 (filtered-frame-list
194 (function (lambda (frame)
195 (and (not (eq frame frame-initial-frame))
196 (eq (window-frame
197 (minibuffer-window frame))
198 frame-initial-frame)))))))
199 (if (or users-of-initial
200 (eq default-minibuffer-frame frame-initial-frame))
201
202 ;; Choose an appropriate frame. Prefer frames which
203 ;; are only minibuffers.
204 (let* ((new-surrogate
205 (car
206 (or (filtered-frame-list
207 (function
208 (lambda (frame)
209 (eq (cdr (assq 'minibuffer
210 (frame-parameters frame)))
211 'only))))
212 (minibuffer-frame-list))))
213 (new-minibuffer (minibuffer-window new-surrogate)))
214
215 (if (eq default-minibuffer-frame frame-initial-frame)
216 (setq default-minibuffer-frame new-surrogate))
217
218 ;; Wean the frames using frame-initial-frame as
219 ;; their minibuffer frame.
220 (mapcar
221 (function
222 (lambda (frame)
223 (modify-frame-parameters
224 frame (list (cons 'minibuffer new-minibuffer)))))
225 users-of-initial))))
ec558adc
JB
226
227 ;; Redirect events enqueued at this frame to the new frame.
228 ;; Is this a good idea?
7eadab74 229 (redirect-frame-focus frame-initial-frame new)
ec558adc 230
7eadab74 231 ;; Finally, get rid of the old frame.
0cffbbb9 232 (delete-frame frame-initial-frame t))
7eadab74
JB
233
234 ;; Otherwise, we don't need all that rigamarole; just apply
235 ;; the new parameters.
3f2f8c83
RS
236 (let (newparms allparms tail)
237 (setq allparms (append initial-frame-alist
238 default-frame-alist))
239 (setq tail allparms)
240 ;; Find just the parms that have changed since we first
241 ;; made this frame. Those are the ones actually set by
242 ;; the init file. For those parms whose values we already knew
243 ;; (such as those spec'd by command line options)
244 ;; it is undesirable to specify the parm again
245 ;; once the user has seen the frame and been able to alter it
246 ;; manually.
247 (while tail
248 (let (newval oldval)
249 (setq oldval (cdr (assq (car (car tail))
250 frame-initial-frame-alist)))
251 (setq newval (cdr (assq (car (car tail)) allparms)))
252 (or (eq oldval newval)
253 (setq newparms
254 (cons (cons (car (car tail)) newval) newparms))))
255 (setq tail (cdr tail)))
256 (modify-frame-parameters frame-initial-frame
257 (nreverse newparms)))))
64c669bc 258
7eadab74
JB
259 ;; Restore the original buffer.
260 (set-buffer old-buffer)
261
262 ;; Make sure the initial frame can be GC'd if it is ever deleted.
d202f1f2
JB
263 ;; Make sure frame-notice-user-settings does nothing if called twice.
264 (setq frame-initial-frame nil)))
64c669bc
JB
265
266\f
7eadab74 267;;;; Creation of additional frames, and other frame miscellanea
dc6d9681 268
7eadab74 269;;; Return some frame other than the current frame, creating one if
eb8c3be9 270;;; necessary. Note that the minibuffer frame, if separate, is not
7eadab74 271;;; considered (see next-frame).
7253d8e0 272(defun get-other-frame ()
dc6d9681
JB
273 (let ((s (if (equal (next-frame (selected-frame)) (selected-frame))
274 (new-frame)
275 (next-frame (selected-frame)))))
64c669bc
JB
276 s))
277
dc6d9681
JB
278(defun next-multiframe-window ()
279 "Select the next window, regardless of which frame it is on."
64c669bc
JB
280 (interactive)
281 (select-window (next-window (selected-window)
282 (> (minibuffer-depth) 0)
283 t)))
284
dc6d9681
JB
285(defun previous-multiframe-window ()
286 "Select the previous window, regardless of which frame it is on."
64c669bc
JB
287 (interactive)
288 (select-window (previous-window (selected-window)
289 (> (minibuffer-depth) 0)
290 t)))
291
92e443b1 292;; Alias, kept temporarily.
31e1d920 293(defalias 'new-frame 'make-frame)
92e443b1 294(defun make-frame (&optional parameters)
dc6d9681 295 "Create a new frame, displaying the current buffer.
bc93c097 296
43a2e52c 297Optional argument PARAMETERS is an alist of parameters for the new
dc6d9681 298frame. Specifically, PARAMETERS is a list of pairs, each having one
43a2e52c
JB
299of the following forms:
300
eaa974e1 301\(name . STRING) - The frame should be named STRING.
43a2e52c 302
eaa974e1 303\(height . NUMBER) - The frame should be NUMBER text lines high. If
43a2e52c
JB
304 this parameter is present, the width parameter must also be
305 given.
306
eaa974e1 307\(width . NUMBER) - The frame should be NUMBER characters in width.
43a2e52c
JB
308 If this parameter is present, the height parameter must also
309 be given.
310
eaa974e1 311\(minibuffer . t) - the frame should have a minibuffer
0ca90494 312\(minibuffer . nil) - the frame should have no minibuffer
eaa974e1
JB
313\(minibuffer . only) - the frame should contain only a minibuffer
314\(minibuffer . WINDOW) - the frame should use WINDOW as its minibuffer window.
43a2e52c 315
eaa974e1
JB
316The documentation for the function `x-create-frame' describes
317additional frame parameters that Emacs recognizes for X window frames."
64c669bc 318 (interactive)
dc6d9681 319 (funcall frame-creation-function parameters))
64c669bc 320
7eadab74
JB
321(defun filtered-frame-list (predicate)
322 "Return a list of all live frames which satisfy PREDICATE."
323 (let ((frames (frame-list))
324 good-frames)
325 (while (consp frames)
326 (if (funcall predicate (car frames))
327 (setq good-frames (cons (car frames) good-frames)))
328 (setq frames (cdr frames)))
329 good-frames))
330
331(defun minibuffer-frame-list ()
332 "Return a list of all frames with their own minibuffers."
333 (filtered-frame-list
334 (function (lambda (frame)
335 (eq frame (window-frame (minibuffer-window frame)))))))
336
58bf6042
JB
337(defun frame-remove-geometry-params (param-list)
338 "Return the parameter list PARAM-LIST, but with geometry specs removed.
339This deletes all bindings in PARAM-LIST for `top', `left', `width',
340and `height' parameters.
341Emacs uses this to avoid overriding explicit moves and resizings from
342the user during startup."
343 (setq param-list (cons nil param-list))
344 (let ((tail param-list))
345 (while (consp (cdr tail))
346 (if (and (consp (car (cdr tail)))
347 (memq (car (car (cdr tail))) '(height width top left)))
348 (setcdr tail (cdr (cdr tail)))
349 (setq tail (cdr tail)))))
350 (cdr param-list))
351
352
64c669bc 353\f
dc6d9681
JB
354;;;; Frame configurations
355
356(defun current-frame-configuration ()
357 "Return a list describing the positions and states of all frames.
376a7584
JB
358Its car is `frame-configuration'.
359Each element of the cdr is a list of the form (FRAME ALIST WINDOW-CONFIG),
360where
361 FRAME is a frame object,
362 ALIST is an association list specifying some of FRAME's parameters, and
363 WINDOW-CONFIG is a window configuration object for FRAME."
364 (cons 'frame-configuration
365 (mapcar (function
366 (lambda (frame)
367 (list frame
368 (frame-parameters frame)
369 (current-window-configuration frame))))
370 (frame-list))))
dc6d9681
JB
371
372(defun set-frame-configuration (configuration)
373 "Restore the frames to the state described by CONFIGURATION.
374Each frame listed in CONFIGURATION has its position, size, window
06b1a5ef 375configuration, and other parameters set as specified in CONFIGURATION."
376a7584
JB
376 (or (frame-configuration-p configuration)
377 (signal 'wrong-type-argument
378 (list 'frame-configuration-p configuration)))
379 (let ((config-alist (cdr configuration))
380 frames-to-delete)
06b1a5ef 381 (mapcar (function
dc6d9681 382 (lambda (frame)
376a7584 383 (let ((parameters (assq frame config-alist)))
06b1a5ef
JB
384 (if parameters
385 (progn
98e9d14b
JB
386 (modify-frame-parameters
387 frame
388 ;; Since we can't set a frame's minibuffer status,
389 ;; we might as well omit the parameter altogether.
390 (let* ((parms (nth 1 parameters))
391 (mini (assq 'minibuffer parms)))
392 (if mini (setq parms (delq mini parms)))
393 parms))
06b1a5ef 394 (set-window-configuration (nth 2 parameters)))
dc6d9681
JB
395 (setq frames-to-delete (cons frame frames-to-delete))))))
396 (frame-list))
397 (mapcar 'delete-frame frames-to-delete)))
64c669bc 398
376a7584
JB
399(defun frame-configuration-p (object)
400 "Return non-nil if OBJECT seems to be a frame configuration.
401Any list whose car is `frame-configuration' is assumed to be a frame
402configuration."
403 (and (consp object)
404 (eq (car object) 'frame-configuration)))
405
64c669bc 406\f
dc6d9681
JB
407;;;; Convenience functions for accessing and interactively changing
408;;;; frame parameters.
64c669bc 409
151bdc83 410(defun frame-height (&optional frame)
dc6d9681
JB
411 "Return number of lines available for display on FRAME.
412If FRAME is omitted, describe the currently selected frame."
151bdc83 413 (cdr (assq 'height (frame-parameters frame))))
dc6d9681
JB
414
415(defun frame-width (&optional frame)
416 "Return number of columns available for display on FRAME.
417If FRAME is omitted, describe the currently selected frame."
151bdc83 418 (cdr (assq 'width (frame-parameters frame))))
dc6d9681 419
64c669bc 420(defun set-default-font (font-name)
7eadab74
JB
421 "Set the font of the selected frame to FONT.
422When called interactively, prompt for the name of the font to use."
64c669bc 423 (interactive "sFont name: ")
dc6d9681 424 (modify-frame-parameters (selected-frame)
7eadab74 425 (list (cons 'font font-name))))
64c669bc 426
8290babd 427(defun set-background-color (color-name)
7eadab74
JB
428 "Set the background color of the selected frame to COLOR.
429When called interactively, prompt for the name of the color to use."
64c669bc 430 (interactive "sColor: ")
dc6d9681 431 (modify-frame-parameters (selected-frame)
7eadab74 432 (list (cons 'background-color color-name))))
64c669bc 433
8290babd 434(defun set-foreground-color (color-name)
7eadab74
JB
435 "Set the foreground color of the selected frame to COLOR.
436When called interactively, prompt for the name of the color to use."
64c669bc 437 (interactive "sColor: ")
dc6d9681 438 (modify-frame-parameters (selected-frame)
7eadab74 439 (list (cons 'foreground-color color-name))))
64c669bc
JB
440
441(defun set-cursor-color (color-name)
7eadab74
JB
442 "Set the text cursor color of the selected frame to COLOR.
443When called interactively, prompt for the name of the color to use."
64c669bc 444 (interactive "sColor: ")
dc6d9681 445 (modify-frame-parameters (selected-frame)
7eadab74 446 (list (cons 'cursor-color color-name))))
64c669bc 447
eaa974e1 448(defun set-mouse-color (color-name)
7eadab74
JB
449 "Set the color of the mouse pointer of the selected frame to COLOR.
450When called interactively, prompt for the name of the color to use."
64c669bc 451 (interactive "sColor: ")
dc6d9681 452 (modify-frame-parameters (selected-frame)
7eadab74
JB
453 (list (cons 'mouse-color color-name))))
454
eaa974e1
JB
455(defun set-border-color (color-name)
456 "Set the color of the border of the selected frame to COLOR.
457When called interactively, prompt for the name of the color to use."
458 (interactive "sColor: ")
459 (modify-frame-parameters (selected-frame)
460 (list (cons 'border-color color-name))))
461
462(defun auto-raise-mode (arg)
7eadab74
JB
463 "Toggle whether or not the selected frame should auto-raise.
464With arg, turn auto-raise mode on if and only if arg is positive."
465 (interactive "P")
466 (if (null arg)
467 (setq arg
468 (if (cdr (assq 'auto-raise (frame-parameters (selected-frame))))
469 -1 1)))
dc6d9681 470 (modify-frame-parameters (selected-frame)
7eadab74
JB
471 (list (cons 'auto-raise (> arg 0)))))
472
eaa974e1 473(defun auto-lower-mode (arg)
7eadab74
JB
474 "Toggle whether or not the selected frame should auto-lower.
475With arg, turn auto-lower mode on if and only if arg is positive."
476 (interactive "P")
477 (if (null arg)
478 (setq arg
479 (if (cdr (assq 'auto-lower (frame-parameters (selected-frame))))
480 -1 1)))
dc6d9681 481 (modify-frame-parameters (selected-frame)
7eadab74
JB
482 (list (cons 'auto-lower (> arg 0)))))
483
7e85c6b5 484(defun toggle-scroll-bar (arg)
0ca90494
JB
485 "Toggle whether or not the selected frame has vertical scroll bars.
486With arg, turn vertical scroll bars on if and only if arg is positive."
7eadab74
JB
487 (interactive "P")
488 (if (null arg)
489 (setq arg
0ca90494 490 (if (cdr (assq 'vertical-scroll-bars
7eadab74
JB
491 (frame-parameters (selected-frame))))
492 -1 1)))
dc6d9681 493 (modify-frame-parameters (selected-frame)
0ca90494 494 (list (cons 'vertical-scroll-bars (> arg 0)))))
7eadab74 495
8290babd 496(defun toggle-horizontal-scroll-bar (arg)
0ca90494
JB
497 "Toggle whether or not the selected frame has horizontal scroll bars.
498With arg, turn horizontal scroll bars on if and only if arg is positive.
499Horizontal scroll bars aren't implemented yet."
7eadab74 500 (interactive "P")
8290babd 501 (error "Horizontal scroll bars aren't implemented yet"))
64c669bc 502
64c669bc 503\f
dc6d9681 504;;;; Aliases for backward compatibility with Emacs 18.
31e1d920
ER
505(defalias 'screen-height 'frame-height)
506(defalias 'screen-width 'frame-width)
9e2b097b
JB
507
508(defun set-screen-width (cols &optional pretend)
509 "Obsolete function to change the size of the screen to COLS columns.\n\
510Optional second arg non-nil means that redisplay should use COLS columns\n\
511but that the idea of the actual width of the frame should not be changed.\n\
512This function is provided only for compatibility with Emacs 18; new code\n\
fe668515 513should use `set-frame-width instead'."
9e2b097b
JB
514 (set-frame-width (selected-frame) cols pretend))
515
516(defun set-screen-height (lines &optional pretend)
517 "Obsolete function to change the height of the screen to LINES lines.\n\
518Optional second arg non-nil means that redisplay should use LINES lines\n\
519but that the idea of the actual height of the screen should not be changed.\n\
520This function is provided only for compatibility with Emacs 18; new code\n\
fe668515 521should use `set-frame-width' instead."
9e2b097b
JB
522 (set-frame-height (selected-frame) lines pretend))
523
524(make-obsolete 'screen-height 'frame-height)
525(make-obsolete 'screen-width 'frame-width)
526(make-obsolete 'set-screen-width 'set-frame-width)
527(make-obsolete 'set-screen-height 'set-frame-height)
dc6d9681
JB
528
529\f
64c669bc 530;;;; Key bindings
daa37602 531(defvar ctl-x-5-map (make-sparse-keymap)
dc6d9681 532 "Keymap for frame commands.")
31e1d920 533(defalias 'ctl-x-5-prefix ctl-x-5-map)
daa37602 534(define-key ctl-x-map "5" 'ctl-x-5-prefix)
64c669bc 535
dc6d9681
JB
536(define-key ctl-x-5-map "2" 'new-frame)
537(define-key ctl-x-5-map "0" 'delete-frame)
49116ac0 538
dc6d9681 539(provide 'frame)
c88ab9ce 540
dc6d9681 541;;; frame.el ends here