(INTERVAL_VISIBLE_P): Use textget.
[bpt/emacs.git] / src / window.c
CommitLineData
7ab12479
JB
1/* Window creation, deletion and examination for GNU Emacs.
2 Does not include redisplay.
c6c5df7f 3 Copyright (C) 1985, 1986, 1987, 1993 Free Software Foundation, Inc.
7ab12479
JB
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
1113d9db 9the Free Software Foundation; either version 2, or (at your option)
7ab12479
JB
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
19the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
20
7ab12479
JB
21#include "config.h"
22#include "lisp.h"
23#include "buffer.h"
44fa5b1e 24#include "frame.h"
7ab12479
JB
25#include "window.h"
26#include "commands.h"
27#include "indent.h"
28#include "termchar.h"
29#include "disptab.h"
f8026fd8 30#include "keyboard.h"
7ab12479 31
806b4d9b 32Lisp_Object Qwindowp, Qwindow_live_p;
7ab12479
JB
33
34Lisp_Object Fnext_window (), Fdelete_window (), Fselect_window ();
35Lisp_Object Fset_window_buffer (), Fsplit_window (), Frecenter ();
36
fd482be5 37void delete_all_subwindows ();
7ab12479
JB
38static struct window *decode_window();
39
40/* This is the window in which the terminal's cursor should
41 be left when nothing is being done with it. This must
42 always be a leaf window, and its buffer is selected by
43 the top level editing loop at the end of each command.
44
45 This value is always the same as
44fa5b1e 46 FRAME_SELECTED_WINDOW (selected_frame). */
7ab12479
JB
47
48Lisp_Object selected_window;
49
44fa5b1e 50/* The minibuffer window of the selected frame.
7ab12479
JB
51 Note that you cannot test for minibufferness of an arbitrary window
52 by comparing against this; but you can test for minibufferness of
53 the selected window. */
54Lisp_Object minibuf_window;
55
56/* Non-nil means it is the window for C-M-v to scroll
57 when the minibuffer is selected. */
58Lisp_Object Vminibuf_scroll_window;
59
60/* Non-nil means this is the buffer whose window C-M-v should scroll. */
61Lisp_Object Vother_window_scroll_buffer;
62
7ab12479
JB
63/* Non-nil means it's function to call to display temp buffers. */
64Lisp_Object Vtemp_buffer_show_function;
65
66/* If a window gets smaller than either of these, it is removed. */
67int window_min_height;
68int window_min_width;
69
70/* Nonzero implies Fdisplay_buffer should create windows. */
71int pop_up_windows;
72
44fa5b1e
JB
73/* Nonzero implies make new frames for Fdisplay_buffer. */
74int pop_up_frames;
7ab12479
JB
75
76/* Non-nil means use this function instead of default */
44fa5b1e 77Lisp_Object Vpop_up_frame_function;
7ab12479
JB
78
79/* Function to call to handle Fdisplay_buffer. */
80Lisp_Object Vdisplay_buffer_function;
81
82/* Fdisplay_buffer always splits the largest window
83 if that window is more than this high. */
84int split_height_threshold;
85
86/* Number of lines of continuity in scrolling by screenfuls. */
87int next_screen_context_lines;
88
89/* Incremented for each window created. */
90static int sequence_number;
91
92#define min(a, b) ((a) < (b) ? (a) : (b))
93\f
94DEFUN ("windowp", Fwindowp, Swindowp, 1, 1, 0,
95 "Returns t if OBJ is a window.")
96 (obj)
97 Lisp_Object obj;
98{
99 return XTYPE (obj) == Lisp_Window ? Qt : Qnil;
100}
101
806b4d9b 102DEFUN ("window-live-p", Fwindow_live_p, Swindow_live_p, 1, 1, 0,
605be8af
JB
103 "Returns t if OBJ is a window which is currently visible.")
104 (obj)
105 Lisp_Object obj;
106{
107 return ((XTYPE (obj) == Lisp_Window
108 && ! NILP (XWINDOW (obj)->buffer))
109 ? Qt : Qnil);
110}
111
7ab12479
JB
112Lisp_Object
113make_window ()
114{
115 register Lisp_Object val;
116 register struct window *p;
117
118 /* Add sizeof (Lisp_Object) here because sizeof (struct Lisp_Vector)
119 includes the first element. */
120 val = Fmake_vector (
121 make_number ((sizeof (struct window) - sizeof (struct Lisp_Vector)
122 + sizeof (Lisp_Object))
123 / sizeof (Lisp_Object)),
124 Qnil);
125 XSETTYPE (val, Lisp_Window);
126 p = XWINDOW (val);
127 XFASTINT (p->sequence_number) = ++sequence_number;
128 XFASTINT (p->left) = XFASTINT (p->top)
129 = XFASTINT (p->height) = XFASTINT (p->width)
130 = XFASTINT (p->hscroll) = 0;
131 XFASTINT (p->last_point_x) = XFASTINT (p->last_point_y) = 0;
132 p->start = Fmake_marker ();
133 p->pointm = Fmake_marker ();
134 XFASTINT (p->use_time) = 0;
44fa5b1e 135 p->frame = Qnil;
7ab12479
JB
136 p->display_table = Qnil;
137 p->dedicated = Qnil;
138 return val;
139}
140
141DEFUN ("selected-window", Fselected_window, Sselected_window, 0, 0, 0,
142 "Return the window that the cursor now appears in and commands apply to.")
143 ()
144{
145 return selected_window;
146}
147
83762ba4
JB
148DEFUN ("minibuffer-window", Fminibuffer_window, Sminibuffer_window, 0, 1, 0,
149 "Return the window used now for minibuffers.\n\
150If the optional argument FRAME is specified, return the minibuffer window\n\
151used by that frame.")
152 (frame)
153 Lisp_Object frame;
7ab12479 154{
44fa5b1e 155#ifdef MULTI_FRAME
83762ba4
JB
156 if (NILP (frame))
157 XSET (frame, Lisp_Frame, selected_frame);
158 else
159 CHECK_LIVE_FRAME (frame, 0);
160#endif
161
162 return FRAME_MINIBUF_WINDOW (XFRAME (frame));
7ab12479
JB
163}
164
605be8af 165DEFUN ("window-minibuffer-p", Fwindow_minibuffer_p, Swindow_minibuffer_p, 0, 1, 0,
7ab12479
JB
166 "Returns non-nil if WINDOW is a minibuffer window.")
167 (window)
168 Lisp_Object window;
169{
170 struct window *w = decode_window (window);
171 return (MINI_WINDOW_P (w) ? Qt : Qnil);
172}
173
174DEFUN ("pos-visible-in-window-p", Fpos_visible_in_window_p,
175 Spos_visible_in_window_p, 0, 2, 0,
44fa5b1e 176 "Return t if position POS is currently on the frame in WINDOW.\n\
7ab12479
JB
177Returns nil if that position is scrolled vertically out of view.\n\
178POS defaults to point; WINDOW, to the selected window.")
179 (pos, window)
180 Lisp_Object pos, window;
181{
182 register struct window *w;
183 register int top;
184 register int height;
185 register int posint;
186 register struct buffer *buf;
187 struct position posval;
188
265a9e55 189 if (NILP (pos))
7ab12479
JB
190 posint = point;
191 else
192 {
193 CHECK_NUMBER_COERCE_MARKER (pos, 0);
194 posint = XINT (pos);
195 }
196
605be8af 197 w = decode_window (window);
7ab12479
JB
198 top = marker_position (w->start);
199
200 if (posint < top)
201 return Qnil;
202
203 height = XFASTINT (w->height) - ! MINI_WINDOW_P (w);
204
205 buf = XBUFFER (w->buffer);
206 if (XFASTINT (w->last_modified) >= BUF_MODIFF (buf))
207 {
44fa5b1e 208 /* If frame is up to date,
7ab12479
JB
209 use the info recorded about how much text fit on it. */
210 if (posint < BUF_Z (buf) - XFASTINT (w->window_end_pos)
211 || (XFASTINT (w->window_end_vpos) < height))
212 return Qt;
213 return Qnil;
214 }
215 else
216 {
217 if (posint > BUF_Z (buf))
218 return Qnil;
219
220 /* If that info is not correct, calculate afresh */
221 posval = *compute_motion (top, 0, 0, posint, height, 0,
535e0b8e 222 window_internal_width (w) - 1,
7ab12479
JB
223 XINT (w->hscroll), 0);
224
225 return posval.vpos < height ? Qt : Qnil;
226 }
227}
228\f
229static struct window *
230decode_window (window)
231 register Lisp_Object window;
232{
265a9e55 233 if (NILP (window))
7ab12479
JB
234 return XWINDOW (selected_window);
235
605be8af 236 CHECK_LIVE_WINDOW (window, 0);
7ab12479
JB
237 return XWINDOW (window);
238}
239
240DEFUN ("window-buffer", Fwindow_buffer, Swindow_buffer, 0, 1, 0,
241 "Return the buffer that WINDOW is displaying.")
242 (window)
243 Lisp_Object window;
244{
245 return decode_window (window)->buffer;
246}
247
248DEFUN ("window-height", Fwindow_height, Swindow_height, 0, 1, 0,
249 "Return the number of lines in WINDOW (including its mode line).")
250 (window)
251 Lisp_Object window;
252{
253 return decode_window (window)->height;
254}
255
256DEFUN ("window-width", Fwindow_width, Swindow_width, 0, 1, 0,
257 "Return the number of columns in WINDOW.")
258 (window)
259 Lisp_Object window;
260{
261 register struct window *w = decode_window (window);
7f4161e0 262 register int width = XFASTINT (w->width);
7ab12479 263
535e0b8e 264 return make_number (window_internal_width (w));
7ab12479
JB
265}
266
267DEFUN ("window-hscroll", Fwindow_hscroll, Swindow_hscroll, 0, 1, 0,
268 "Return the number of columns by which WINDOW is scrolled from left margin.")
269 (window)
270 Lisp_Object window;
271{
272 return decode_window (window)->hscroll;
273}
274
275DEFUN ("set-window-hscroll", Fset_window_hscroll, Sset_window_hscroll, 2, 2, 0,
276 "Set number of columns WINDOW is scrolled from left margin to NCOL.\n\
277NCOL should be zero or positive.")
278 (window, ncol)
279 register Lisp_Object window, ncol;
280{
281 register struct window *w;
282
283 CHECK_NUMBER (ncol, 1);
284 if (XINT (ncol) < 0) XFASTINT (ncol) = 0;
285 if (XFASTINT (ncol) >= (1 << (SHORTBITS - 1)))
286 args_out_of_range (ncol, Qnil);
287 w = decode_window (window);
7f4161e0 288 if (XINT (w->hscroll) != XINT (ncol))
7ab12479
JB
289 clip_changed = 1; /* Prevent redisplay shortcuts */
290 w->hscroll = ncol;
291 return ncol;
292}
293
294DEFUN ("window-edges", Fwindow_edges, Swindow_edges, 0, 1, 0,
295 "Return a list of the edge coordinates of WINDOW.\n\
44fa5b1e 296\(LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at top left corner of frame.\n\
7ab12479
JB
297RIGHT is one more than the rightmost column used by WINDOW,\n\
298and BOTTOM is one more than the bottommost row used by WINDOW\n\
299 and its mode-line.")
300 (window)
301 Lisp_Object window;
302{
303 register struct window *w = decode_window (window);
304
305 return Fcons (w->left, Fcons (w->top,
306 Fcons (make_number (XFASTINT (w->left) + XFASTINT (w->width)),
307 Fcons (make_number (XFASTINT (w->top)
308 + XFASTINT (w->height)),
309 Qnil))));
310}
311
d5783c40
JB
312/* Test if the character at column *x, row *y is within window *w.
313 If it is not, return 0;
314 if it is in the window's text area,
315 set *x and *y to its location relative to the upper left corner
316 of the window, and
317 return 1;
318 if it is on the window's modeline, return 2;
319 if it is on the border between the window and its right sibling,
320 return 3. */
321static int
322coordinates_in_window (w, x, y)
323 register struct window *w;
324 register int *x, *y;
325{
326 register int left = XINT (w->left);
327 register int width = XINT (w->width);
328 register int window_height = XINT (w->height);
329 register int top = XFASTINT (w->top);
330
331 if ( *x < left || *x >= left + width
332 || *y < top || *y >= top + window_height)
333 return 0;
334
335 /* Is the character is the mode line? */
336 if (*y == top + window_height - 1
05c2896a 337 && ! MINI_WINDOW_P (w))
d5783c40
JB
338 return 2;
339
340 /* Is the character in the right border? */
341 if (*x == left + width - 1
44fa5b1e 342 && left + width != FRAME_WIDTH (XFRAME (w->frame)))
d5783c40
JB
343 return 3;
344
345 *x -= left;
346 *y -= top;
347 return 1;
348}
349
350DEFUN ("coordinates-in-window-p", Fcoordinates_in_window_p,
351 Scoordinates_in_window_p, 2, 2, 0,
352 "Return non-nil if COORDINATES are in WINDOW.\n\
1113d9db 353COORDINATES is a cons of the form (X . Y), X and Y being distances\n\
44fa5b1e 354measured in characters from the upper-left corner of the frame.\n\
1113d9db 355(0 . 0) denotes the character in the upper left corner of the\n\
44fa5b1e 356frame.\n\
d5783c40
JB
357If COORDINATES are in the text portion of WINDOW,\n\
358 the coordinates relative to the window are returned.\n\
e5d77022 359If they are in the mode line of WINDOW, `mode-line' is returned.\n\
d5783c40 360If they are on the border between WINDOW and its right sibling,\n\
e5d77022 361 `vertical-line' is returned.")
d5783c40
JB
362 (coordinates, window)
363 register Lisp_Object coordinates, window;
364{
365 int x, y;
366
605be8af 367 CHECK_LIVE_WINDOW (window, 0);
d5783c40
JB
368 CHECK_CONS (coordinates, 1);
369 x = XINT (Fcar (coordinates));
370 y = XINT (Fcdr (coordinates));
371
372 switch (coordinates_in_window (XWINDOW (window), &x, &y))
373 {
374 case 0: /* NOT in window at all. */
375 return Qnil;
376
377 case 1: /* In text part of window. */
378 return Fcons (x, y);
379
380 case 2: /* In mode line of window. */
381 return Qmode_line;
382
383 case 3: /* On right border of window. */
e5d77022 384 return Qvertical_line;
d5783c40
JB
385
386 default:
387 abort ();
388 }
389}
390
7ab12479 391/* Find the window containing column x, row y, and return it as a
d5783c40
JB
392 Lisp_Object. If x, y is on the window's modeline, set *part
393 to 1; if it is on the separating line between the window and its
394 right sibling, set it to 2; otherwise set it to 0. If there is no
395 window under x, y return nil and leave *part unmodified. */
7ab12479 396Lisp_Object
44fa5b1e
JB
397window_from_coordinates (frame, x, y, part)
398 FRAME_PTR frame;
7ab12479 399 int x, y;
d5783c40 400 int *part;
7ab12479
JB
401{
402 register Lisp_Object tem, first;
403
44fa5b1e 404 tem = first = FRAME_SELECTED_WINDOW (frame);
7ab12479 405
d5783c40 406 do
7ab12479
JB
407 {
408 int found = coordinates_in_window (XWINDOW (tem), &x, &y);
409
410 if (found)
411 {
d5783c40 412 *part = found - 1;
7ab12479
JB
413 return tem;
414 }
415
d5783c40 416 tem = Fnext_window (tem, Qt, Qlambda);
7ab12479 417 }
d5783c40
JB
418 while (! EQ (tem, first));
419
420 return Qnil;
7ab12479
JB
421}
422
ab17c3f2 423DEFUN ("window-at", Fwindow_at, Swindow_at, 2, 3, 0,
b0c33a94 424 "Return window containing coordinates X and Y on FRAME.\n\
44fa5b1e
JB
425If omitted, FRAME defaults to the currently selected frame.\n\
426The top left corner of the frame is considered to be row 0,\n\
95605e15 427column 0.")
b0c33a94
RS
428 (x, y, frame)
429 Lisp_Object x, y, frame;
7ab12479
JB
430{
431 int part;
432
4b206065 433#ifdef MULTI_FRAME
44fa5b1e
JB
434 if (NILP (frame))
435 XSET (frame, Lisp_Frame, selected_frame);
d5783c40 436 else
44fa5b1e 437 CHECK_LIVE_FRAME (frame, 2);
4b206065 438#endif
b0c33a94
RS
439 CHECK_NUMBER (x, 0);
440 CHECK_NUMBER (y, 1);
7ab12479 441
44fa5b1e 442 return window_from_coordinates (XFRAME (frame),
b0c33a94 443 XINT (x), XINT (y),
7ab12479
JB
444 &part);
445}
446
447DEFUN ("window-point", Fwindow_point, Swindow_point, 0, 1, 0,
448 "Return current value of point in WINDOW.\n\
449For a nonselected window, this is the value point would have\n\
450if that window were selected.\n\
451\n\
452Note that, when WINDOW is the selected window and its buffer\n\
453is also currently selected, the value returned is the same as (point).\n\
454It would be more strictly correct to return the `top-level' value\n\
455of point, outside of any save-excursion forms.\n\
456But that is hard to define.")
457 (window)
458 Lisp_Object window;
459{
460 register struct window *w = decode_window (window);
461
462 if (w == XWINDOW (selected_window)
463 && current_buffer == XBUFFER (w->buffer))
464 return Fpoint ();
465 return Fmarker_position (w->pointm);
466}
467
468DEFUN ("window-start", Fwindow_start, Swindow_start, 0, 1, 0,
469 "Return position at which display currently starts in WINDOW.")
470 (window)
471 Lisp_Object window;
472{
473 return Fmarker_position (decode_window (window)->start);
474}
475
476DEFUN ("window-end", Fwindow_end, Swindow_end, 0, 1, 0,
477 "Return position at which display currently ends in WINDOW.")
478 (window)
479 Lisp_Object window;
480{
481 Lisp_Object value;
482 struct window *w = decode_window (window);
483
484 XSET (value, Lisp_Int,
485 BUF_Z (current_buffer) - XFASTINT (w->window_end_pos));
486
487 return value;
488}
489
490DEFUN ("set-window-point", Fset_window_point, Sset_window_point, 2, 2, 0,
491 "Make point value in WINDOW be at position POS in WINDOW's buffer.")
492 (window, pos)
493 Lisp_Object window, pos;
494{
495 register struct window *w = decode_window (window);
496
497 CHECK_NUMBER_COERCE_MARKER (pos, 1);
498 if (w == XWINDOW (selected_window))
499 Fgoto_char (pos);
500 else
501 set_marker_restricted (w->pointm, pos, w->buffer);
502
503 return pos;
504}
505
506DEFUN ("set-window-start", Fset_window_start, Sset_window_start, 2, 3, 0,
507 "Make display in WINDOW start at position POS in WINDOW's buffer.\n\
508Optional third arg NOFORCE non-nil inhibits next redisplay\n\
509from overriding motion of point in order to display at this exact start.")
510 (window, pos, noforce)
511 Lisp_Object window, pos, noforce;
512{
513 register struct window *w = decode_window (window);
514
515 CHECK_NUMBER_COERCE_MARKER (pos, 1);
516 set_marker_restricted (w->start, pos, w->buffer);
517 /* this is not right, but much easier than doing what is right. */
518 w->start_at_line_beg = Qnil;
265a9e55 519 if (NILP (noforce))
7ab12479
JB
520 w->force_start = Qt;
521 w->update_mode_line = Qt;
522 XFASTINT (w->last_modified) = 0;
62c07cc7
JB
523 if (!EQ (window, selected_window))
524 windows_or_buffers_changed++;
7ab12479
JB
525 return pos;
526}
527
528DEFUN ("window-dedicated-p", Fwindow_dedicated_p, Swindow_dedicated_p,
529 1, 1, 0,
530 "Return WINDOW's dedicated object, usually t or nil.\n\
1f18c48f 531See also `set-window-dedicated-p'.")
7ab12479
JB
532 (window)
533 Lisp_Object window;
534{
535 return decode_window (window)->dedicated;
536}
537
d207b766
RS
538DEFUN ("set-window-dedicated-p", Fset_window_dedicated_p,
539 Sset_window_dedicated_p, 2, 2, 0,
540 "Control whether WINDOW is dedicated to the buffer it displays.\n\
541If it is dedicated, Emacs will not automatically change\n\
542which buffer appears in it.\n\
543The second argument is the new value for the dedication flag;\n\
544non-nil means yes.")
7ab12479
JB
545 (window, arg)
546 Lisp_Object window, arg;
547{
548 register struct window *w = decode_window (window);
549
265a9e55 550 if (NILP (arg))
7ab12479
JB
551 w->dedicated = Qnil;
552 else
d207b766 553 w->dedicated = Qt;
7ab12479
JB
554
555 return w->dedicated;
556}
557
558DEFUN ("window-display-table", Fwindow_display_table, Swindow_display_table,
559 0, 1, 0,
560 "Return the display-table that WINDOW is using.")
561 (window)
562 Lisp_Object window;
563{
564 return decode_window (window)->display_table;
565}
566
567/* Get the display table for use currently on window W.
568 This is either W's display table or W's buffer's display table.
569 Ignore the specified tables if they are not valid;
570 if no valid table is specified, return 0. */
571
572struct Lisp_Vector *
573window_display_table (w)
574 struct window *w;
575{
576 Lisp_Object tem;
577 tem = w->display_table;
578 if (XTYPE (tem) == Lisp_Vector && XVECTOR (tem)->size == DISP_TABLE_SIZE)
579 return XVECTOR (tem);
580 tem = XBUFFER (w->buffer)->display_table;
581 if (XTYPE (tem) == Lisp_Vector && XVECTOR (tem)->size == DISP_TABLE_SIZE)
582 return XVECTOR (tem);
583 tem = Vstandard_display_table;
584 if (XTYPE (tem) == Lisp_Vector && XVECTOR (tem)->size == DISP_TABLE_SIZE)
585 return XVECTOR (tem);
586 return 0;
587}
588
3a2712f9 589DEFUN ("set-window-display-table", Fset_window_display_table, Sset_window_display_table, 2, 2, 0,
7ab12479
JB
590 "Set WINDOW's display-table to TABLE.")
591 (window, table)
592 register Lisp_Object window, table;
593{
594 register struct window *w;
595 register Lisp_Object z; /* Return value. */
596
597 w = decode_window (window);
598 w->display_table = table;
599 return table;
600}
601\f
602/* Record info on buffer window w is displaying
603 when it is about to cease to display that buffer. */
604static
605unshow_buffer (w)
606 register struct window *w;
607{
608 Lisp_Object buf = w->buffer;
609
610 if (XBUFFER (buf) != XMARKER (w->pointm)->buffer)
611 abort ();
612
613 if (w == XWINDOW (selected_window)
614 || ! EQ (buf, XWINDOW (selected_window)->buffer))
615 /* Do this except when the selected window's buffer
616 is being removed from some other window. */
617 XBUFFER (buf)->last_window_start = marker_position (w->start);
618
619 /* Point in the selected window's buffer
620 is actually stored in that buffer, and the window's pointm isn't used.
621 So don't clobber point in that buffer. */
622 if (! EQ (buf, XWINDOW (selected_window)->buffer))
623 BUF_PT (XBUFFER (buf))
624 = clip_to_bounds (BUF_BEGV (XBUFFER (buf)),
625 marker_position (w->pointm),
626 BUF_ZV (XBUFFER (buf)));
627}
628
629/* Put replacement into the window structure in place of old. */
630static
631replace_window (old, replacement)
632 Lisp_Object old, replacement;
633{
634 register Lisp_Object tem;
635 register struct window *o = XWINDOW (old), *p = XWINDOW (replacement);
636
44fa5b1e
JB
637 /* If OLD is its frame's root_window, then replacement is the new
638 root_window for that frame. */
7ab12479 639
7f4161e0 640 if (EQ (old, FRAME_ROOT_WINDOW (XFRAME (o->frame))))
44fa5b1e 641 FRAME_ROOT_WINDOW (XFRAME (o->frame)) = replacement;
7ab12479
JB
642
643 p->left = o->left;
644 p->top = o->top;
645 p->width = o->width;
646 p->height = o->height;
647
648 p->next = tem = o->next;
265a9e55 649 if (!NILP (tem))
7ab12479
JB
650 XWINDOW (tem)->prev = replacement;
651
652 p->prev = tem = o->prev;
265a9e55 653 if (!NILP (tem))
7ab12479
JB
654 XWINDOW (tem)->next = replacement;
655
656 p->parent = tem = o->parent;
265a9e55 657 if (!NILP (tem))
7ab12479
JB
658 {
659 if (EQ (XWINDOW (tem)->vchild, old))
660 XWINDOW (tem)->vchild = replacement;
661 if (EQ (XWINDOW (tem)->hchild, old))
662 XWINDOW (tem)->hchild = replacement;
663 }
664
665/*** Here, if replacement is a vertical combination
666and so is its new parent, we should make replacement's
667children be children of that parent instead. ***/
668}
669
670DEFUN ("delete-window", Fdelete_window, Sdelete_window, 0, 1, "",
671 "Remove WINDOW from the display. Default is selected window.")
672 (window)
673 register Lisp_Object window;
674{
675 register Lisp_Object tem, parent, sib;
676 register struct window *p;
677 register struct window *par;
678
605be8af
JB
679 /* Because this function is called by other C code on non-leaf
680 windows, the CHECK_LIVE_WINDOW macro would choke inappropriately,
681 so we can't decode_window here. */
265a9e55 682 if (NILP (window))
7ab12479
JB
683 window = selected_window;
684 else
685 CHECK_WINDOW (window, 0);
7ab12479 686 p = XWINDOW (window);
605be8af
JB
687
688 /* It's okay to delete an already-deleted window. */
689 if (NILP (p->buffer)
690 && NILP (p->hchild)
691 && NILP (p->vchild))
692 return Qnil;
693
7ab12479 694 parent = p->parent;
265a9e55 695 if (NILP (parent))
7ab12479
JB
696 error ("Attempt to delete minibuffer or sole ordinary window");
697 par = XWINDOW (parent);
698
699 windows_or_buffers_changed++;
700
605be8af
JB
701 /* Are we trying to delete any frame's selected window? */
702 {
703 Lisp_Object frame = WINDOW_FRAME (XWINDOW (window));
704
705 if (EQ (window, FRAME_SELECTED_WINDOW (XFRAME (frame))))
706 {
707 Lisp_Object alternative = Fnext_window (window, Qlambda, Qnil);
708
709 /* If we're about to delete the selected window on the
710 selected frame, then we should use Fselect_window to select
711 the new window. On the other hand, if we're about to
712 delete the selected window on any other frame, we shouldn't do
713 anything but set the frame's selected_window slot. */
714 if (EQ (window, selected_window))
715 Fselect_window (alternative);
716 else
717 FRAME_SELECTED_WINDOW (XFRAME (frame)) = alternative;
718 }
719 }
7ab12479
JB
720
721 tem = p->buffer;
722 /* tem is null for dummy parent windows
723 (which have inferiors but not any contents themselves) */
265a9e55 724 if (!NILP (tem))
7ab12479
JB
725 {
726 unshow_buffer (p);
727 unchain_marker (p->pointm);
728 unchain_marker (p->start);
7ab12479
JB
729 }
730
731 tem = p->next;
265a9e55 732 if (!NILP (tem))
7ab12479
JB
733 XWINDOW (tem)->prev = p->prev;
734
735 tem = p->prev;
265a9e55 736 if (!NILP (tem))
7ab12479
JB
737 XWINDOW (tem)->next = p->next;
738
739 if (EQ (window, par->hchild))
740 par->hchild = p->next;
741 if (EQ (window, par->vchild))
742 par->vchild = p->next;
743
744 /* Find one of our siblings to give our space to. */
745 sib = p->prev;
265a9e55 746 if (NILP (sib))
7ab12479
JB
747 {
748 /* If p gives its space to its next sibling, that sibling needs
749 to have its top/left side pulled back to where p's is.
750 set_window_{height,width} will re-position the sibling's
751 children. */
752 sib = p->next;
7f4161e0
JB
753 XWINDOW (sib)->top = p->top;
754 XWINDOW (sib)->left = p->left;
7ab12479
JB
755 }
756
757 /* Stretch that sibling. */
265a9e55 758 if (!NILP (par->vchild))
7ab12479
JB
759 set_window_height (sib,
760 XFASTINT (XWINDOW (sib)->height) + XFASTINT (p->height),
761 1);
265a9e55 762 if (!NILP (par->hchild))
7ab12479
JB
763 set_window_width (sib,
764 XFASTINT (XWINDOW (sib)->width) + XFASTINT (p->width),
765 1);
766
767 /* If parent now has only one child,
768 put the child into the parent's place. */
7ab12479 769 tem = par->hchild;
265a9e55 770 if (NILP (tem))
7ab12479 771 tem = par->vchild;
265a9e55 772 if (NILP (XWINDOW (tem)->next))
7ab12479 773 replace_window (parent, tem);
605be8af
JB
774
775 /* Since we may be deleting combination windows, we must make sure that
776 not only p but all its children have been marked as deleted. */
777 if (! NILP (p->hchild))
778 delete_all_subwindows (XWINDOW (p->hchild));
779 else if (! NILP (p->vchild))
780 delete_all_subwindows (XWINDOW (p->vchild));
781
782 /* Mark this window as deleted. */
783 p->buffer = p->hchild = p->vchild = Qnil;
784
7ab12479
JB
785 return Qnil;
786}
787\f
7ab12479 788
44fa5b1e 789extern Lisp_Object next_frame (), prev_frame ();
7ab12479
JB
790
791DEFUN ("next-window", Fnext_window, Snext_window, 0, 3, 0,
792 "Return next window after WINDOW in canonical ordering of windows.\n\
d5783c40
JB
793If omitted, WINDOW defaults to the selected window.\n\
794\n\
795Optional second arg MINIBUF t means count the minibuffer window even\n\
796if not active. MINIBUF nil or omitted means count the minibuffer iff\n\
797it is active. MINIBUF neither t nor nil means not to count the\n\
798minibuffer even if it is active.\n\
799\n\
44fa5b1e
JB
800Several frames may share a single minibuffer; if the minibuffer\n\
801counts, all windows on all frames that share that minibuffer count\n\
d5783c40 802too. This means that next-window may be used to iterate through the\n\
44fa5b1e
JB
803set of windows even when the minibuffer is on another frame. If the\n\
804minibuffer does not count, only windows from WINDOW's frame count.\n\
d5783c40 805\n\
44fa5b1e
JB
806Optional third arg ALL-FRAMES t means include windows on all frames.\n\
807ALL-FRAMES nil or omitted means cycle within the frames as specified\n\
dbc4e1c1
JB
808above. If neither nil nor t, restrict to WINDOW's frame.\n\
809\n\
810If you use consistent values for MINIBUF and ALL-FRAMES, you can use\n\
811`next-window' to iterate through the entire cycle of acceptable\n\
812windows, eventually ending up back at the window you started with.\n\
813`previous-window' traverses the same cycle, in the reverse order.")
44fa5b1e
JB
814 (window, minibuf, all_frames)
815 register Lisp_Object window, minibuf, all_frames;
7ab12479
JB
816{
817 register Lisp_Object tem;
d5783c40 818 Lisp_Object start_window;
7ab12479 819
265a9e55 820 if (NILP (window))
7ab12479
JB
821 window = selected_window;
822 else
605be8af 823 CHECK_LIVE_WINDOW (window, 0);
7ab12479 824
d5783c40
JB
825 start_window = window;
826
827 /* minibuf == nil may or may not include minibuffers.
828 Decide if it does. */
265a9e55 829 if (NILP (minibuf))
d5783c40
JB
830 minibuf = (minibuf_level ? Qt : Qlambda);
831
44fa5b1e
JB
832 /* all_frames == nil doesn't specify which frames to include.
833 Decide which frames it includes. */
834 if (NILP (all_frames))
835 all_frames = (EQ (minibuf, Qt)
836 ? (FRAME_MINIBUF_WINDOW
837 (XFRAME
838 (WINDOW_FRAME
d5783c40
JB
839 (XWINDOW (window)))))
840 : Qnil);
44fa5b1e
JB
841 else if (! EQ (all_frames, Qt))
842 all_frames = Qnil;
7ab12479
JB
843
844 /* Do this loop at least once, to get the next window, and perhaps
845 again, if we hit the minibuffer and that is not acceptable. */
846 do
847 {
848 /* Find a window that actually has a next one. This loop
849 climbs up the tree. */
265a9e55
JB
850 while (tem = XWINDOW (window)->next, NILP (tem))
851 if (tem = XWINDOW (window)->parent, !NILP (tem))
7ab12479 852 window = tem;
d5783c40 853 else
7ab12479 854 {
44fa5b1e
JB
855 /* We've reached the end of this frame.
856 Which other frames are acceptable? */
857 tem = WINDOW_FRAME (XWINDOW (window));
858#ifdef MULTI_FRAME
859 if (! NILP (all_frames))
860 tem = next_frame (tem, all_frames);
7ab12479 861#endif
44fa5b1e 862 tem = FRAME_ROOT_WINDOW (XFRAME (tem));
d5783c40 863
7ab12479
JB
864 break;
865 }
866
867 window = tem;
d5783c40 868
7ab12479
JB
869 /* If we're in a combination window, find its first child and
870 recurse on that. Otherwise, we've found the window we want. */
871 while (1)
872 {
265a9e55 873 if (!NILP (XWINDOW (window)->hchild))
7ab12479 874 window = XWINDOW (window)->hchild;
265a9e55 875 else if (!NILP (XWINDOW (window)->vchild))
7ab12479
JB
876 window = XWINDOW (window)->vchild;
877 else break;
878 }
879 }
d5783c40
JB
880 /* Which windows are acceptible?
881 Exit the loop and accept this window if
7ab12479 882 this isn't a minibuffer window, or
d5783c40
JB
883 we're accepting minibuffer windows, or
884 we've come all the way around and we're back at the original window. */
7ab12479 885 while (MINI_WINDOW_P (XWINDOW (window))
d5783c40 886 && ! EQ (minibuf, Qt)
7f4161e0 887 && ! EQ (window, start_window));
7ab12479
JB
888
889 return window;
890}
891
892DEFUN ("previous-window", Fprevious_window, Sprevious_window, 0, 3, 0,
d5783c40
JB
893 "Return the window preceeding WINDOW in canonical ordering of windows.\n\
894If omitted, WINDOW defaults to the selected window.\n\
895\n\
896Optional second arg MINIBUF t means count the minibuffer window even\n\
897if not active. MINIBUF nil or omitted means count the minibuffer iff\n\
898it is active. MINIBUF neither t nor nil means not to count the\n\
899minibuffer even if it is active.\n\
900\n\
44fa5b1e
JB
901Several frames may share a single minibuffer; if the minibuffer\n\
902counts, all windows on all frames that share that minibuffer count\n\
d5783c40 903too. This means that previous-window may be used to iterate through\n\
44fa5b1e
JB
904the set of windows even when the minibuffer is on another frame. If\n\
905the minibuffer does not count, only windows from WINDOW's frame\n\
d5783c40
JB
906count.\n\
907\n\
44fa5b1e
JB
908Optional third arg ALL-FRAMES t means include windows on all frames.\n\
909ALL-FRAMES nil or omitted means cycle within the frames as specified\n\
dbc4e1c1
JB
910above. If neither nil nor t, restrict to WINDOW's frame.\n\
911\n\
912If you use consistent values for MINIBUF and ALL-FRAMES, you can use\n\
913`previous-window' to iterate through the entire cycle of acceptable\n\
914windows, eventually ending up back at the window you started with.\n\
915`next-window' traverses the same cycle, in the reverse order.")
44fa5b1e
JB
916 (window, minibuf, all_frames)
917 register Lisp_Object window, minibuf, all_frames;
7ab12479
JB
918{
919 register Lisp_Object tem;
d5783c40 920 Lisp_Object start_window;
7ab12479 921
265a9e55 922 if (NILP (window))
7ab12479
JB
923 window = selected_window;
924 else
605be8af 925 CHECK_LIVE_WINDOW (window, 0);
7ab12479 926
d5783c40
JB
927 start_window = window;
928
929 /* minibuf == nil may or may not include minibuffers.
930 Decide if it does. */
265a9e55 931 if (NILP (minibuf))
d5783c40
JB
932 minibuf = (minibuf_level ? Qt : Qlambda);
933
44fa5b1e
JB
934 /* all_frames == nil doesn't specify which frames to include.
935 Decide which frames it includes. */
936 if (NILP (all_frames))
937 all_frames = (EQ (minibuf, Qt)
938 ? (FRAME_MINIBUF_WINDOW
939 (XFRAME
940 (WINDOW_FRAME
d5783c40
JB
941 (XWINDOW (window)))))
942 : Qnil);
44fa5b1e
JB
943 else if (! EQ (all_frames, Qt))
944 all_frames = Qnil;
7ab12479
JB
945
946 /* Do this loop at least once, to get the previous window, and perhaps
947 again, if we hit the minibuffer and that is not acceptable. */
948 do
949 {
950 /* Find a window that actually has a previous one. This loop
951 climbs up the tree. */
265a9e55
JB
952 while (tem = XWINDOW (window)->prev, NILP (tem))
953 if (tem = XWINDOW (window)->parent, !NILP (tem))
7ab12479 954 window = tem;
d5783c40 955 else
7ab12479 956 {
44fa5b1e
JB
957 /* We have found the top window on the frame.
958 Which frames are acceptable? */
959 tem = WINDOW_FRAME (XWINDOW (window));
960#ifdef MULTI_FRAME
961 if (! NILP (all_frames))
dbc4e1c1
JB
962 /* It's actually important that we use prev_frame here,
963 rather than next_frame. All the windows acceptable
964 according to the given parameters should form a ring;
965 Fnext_window and Fprevious_window should go back and
966 forth around the ring. If we use next_frame here,
967 then Fnext_window and Fprevious_window take different
968 paths through the set of acceptable windows.
969 window_loop assumes that these `ring' requirement are
970 met. */
971 tem = prev_frame (tem, all_frames);
7ab12479 972#endif
44fa5b1e 973 tem = FRAME_ROOT_WINDOW (XFRAME (tem));
d5783c40 974
7ab12479
JB
975 break;
976 }
977
978 window = tem;
979 /* If we're in a combination window, find its last child and
980 recurse on that. Otherwise, we've found the window we want. */
981 while (1)
982 {
265a9e55 983 if (!NILP (XWINDOW (window)->hchild))
7ab12479 984 window = XWINDOW (window)->hchild;
265a9e55 985 else if (!NILP (XWINDOW (window)->vchild))
7ab12479
JB
986 window = XWINDOW (window)->vchild;
987 else break;
265a9e55 988 while (tem = XWINDOW (window)->next, !NILP (tem))
7ab12479
JB
989 window = tem;
990 }
991 }
d5783c40
JB
992 /* Which windows are acceptable?
993 Exit the loop and accept this window if
7ab12479 994 this isn't a minibuffer window, or
d5783c40
JB
995 we're accepting minibuffer windows, or
996 we've come all the way around and we're back at the original window. */
7ab12479 997 while (MINI_WINDOW_P (XWINDOW (window))
d5783c40 998 && !EQ (minibuf, Qt)
7f4161e0 999 && !EQ (window, start_window));
7ab12479
JB
1000
1001 return window;
1002}
1003
62c07cc7 1004DEFUN ("other-window", Fother_window, Sother_window, 1, 2, "p",
44fa5b1e
JB
1005 "Select the ARG'th different window on this frame.\n\
1006All windows on current frame are arranged in a cyclic order.\n\
7ab12479
JB
1007This command selects the window ARG steps away in that order.\n\
1008A negative ARG moves in the opposite order. If the optional second\n\
44fa5b1e
JB
1009argument ALL_FRAMES is non-nil, cycle through all frames.")
1010 (n, all_frames)
1011 register Lisp_Object n, all_frames;
7ab12479
JB
1012{
1013 register int i;
1014 register Lisp_Object w;
1015
1016 CHECK_NUMBER (n, 0);
1017 w = selected_window;
1018 i = XINT (n);
1019
1020 while (i > 0)
1021 {
44fa5b1e 1022 w = Fnext_window (w, Qnil, all_frames);
7ab12479
JB
1023 i--;
1024 }
1025 while (i < 0)
1026 {
44fa5b1e 1027 w = Fprevious_window (w, Qnil, all_frames);
7ab12479
JB
1028 i++;
1029 }
1030 Fselect_window (w);
1031 return Qnil;
1032}
1033\f
1034/* Look at all windows, performing an operation specified by TYPE
1035 with argument OBJ.
44fa5b1e
JB
1036 If FRAMES is Qt, look at all frames, if Qnil, look at just the selected
1037 frame. If FRAMES is a frame, just look at windows on that frame.
7ab12479
JB
1038 If MINI is non-zero, perform the operation on minibuffer windows too.
1039*/
1040
1041enum window_loop
1042{
1043 WINDOW_LOOP_UNUSED,
1044 GET_BUFFER_WINDOW, /* Arg is buffer */
1045 GET_LRU_WINDOW, /* Arg is t for full-width windows only */
1046 DELETE_OTHER_WINDOWS, /* Arg is window not to delete */
1047 DELETE_BUFFER_WINDOWS, /* Arg is buffer */
1048 GET_LARGEST_WINDOW,
1049 UNSHOW_BUFFER, /* Arg is buffer */
1050};
1051
1052static Lisp_Object
44fa5b1e 1053window_loop (type, obj, mini, frames)
7ab12479 1054 enum window_loop type;
44fa5b1e 1055 register Lisp_Object obj, frames;
7ab12479
JB
1056 int mini;
1057{
1058 register Lisp_Object w;
1059 register Lisp_Object best_window;
1060 register Lisp_Object next_window;
4b206065 1061 register Lisp_Object last_window;
44fa5b1e
JB
1062 FRAME_PTR frame;
1063
4b206065 1064#ifdef MULTI_FRAME
44fa5b1e
JB
1065 /* If we're only looping through windows on a particular frame,
1066 frame points to that frame. If we're looping through windows
1067 on all frames, frame is 0. */
1068 if (FRAMEP (frames))
1069 frame = XFRAME (frames);
1070 else if (NILP (frames))
1071 frame = selected_frame;
7ab12479 1072 else
44fa5b1e 1073 frame = 0;
4b206065
JB
1074#else
1075 frame = 0;
1076#endif
7ab12479
JB
1077
1078 /* Pick a window to start with. */
1079 if (XTYPE (obj) == Lisp_Window)
4b206065 1080 w = obj;
44fa5b1e 1081 else if (frame)
4b206065 1082 w = FRAME_SELECTED_WINDOW (frame);
7ab12479 1083 else
4b206065
JB
1084 w = FRAME_SELECTED_WINDOW (selected_frame);
1085
1086 /* Figure out the last window we're going to mess with. Since
1087 Fnext_window, given the same options, is guaranteed to go in a
1088 ring, we can just use Fprevious_window to find the last one.
1089
1090 We can't just wait until we hit the first window again, because
1091 it might be deleted. */
1092
1093#ifdef MULTI_FRAME
1094 if (frame)
1095 last_window = Fprevious_window (w, (mini ? Qt : Qnil), Qlambda);
1096 else
1097#endif /* MULTI_FRAME */
1098 /* We know frame is 0, so we're looping through all frames.
1099 Or we know this isn't a MULTI_FRAME Emacs, so who cares? */
1100 last_window = Fprevious_window (w, mini ? Qt : Qnil, Qt);
7ab12479 1101
7ab12479 1102 best_window = Qnil;
4b206065 1103 for (;;)
7ab12479
JB
1104 {
1105 /* Pick the next window now, since some operations will delete
1106 the current window. */
44fa5b1e
JB
1107#ifdef MULTI_FRAME
1108 if (frame)
d5783c40 1109 next_window = Fnext_window (w, (mini ? Qt : Qnil), Qlambda);
7ab12479 1110 else
4b206065 1111#endif /* MULTI_FRAME */
44fa5b1e
JB
1112 /* We know frame is 0, so we're looping through all frames.
1113 Or we know this isn't a MULTI_FRAME Emacs, so who cares? */
7ab12479
JB
1114 next_window = Fnext_window (w, mini ? Qt : Qnil, Qt);
1115
1116 if (!MINI_WINDOW_P (XWINDOW (w))
1117 || (mini && minibuf_level > 0))
1118 switch (type)
1119 {
1120 case GET_BUFFER_WINDOW:
1121#if 0
44fa5b1e
JB
1122 /* Ignore invisible and iconified frames. */
1123 if (! FRAME_VISIBLE_P (XFRAME (WINDOW_FRAME (XWINDOW (w))))
1124 || FRAME_ICONIFIED_P (XFRAME (WINDOW_FRAME (XWINDOW (w)))))
7ab12479
JB
1125 break;
1126#endif
1127 if (XBUFFER (XWINDOW (w)->buffer) == XBUFFER (obj))
1128 return w;
1129 break;
1130
1131 case GET_LRU_WINDOW:
1132 /* t as arg means consider only full-width windows */
e5d77022 1133 if (!NILP (obj) && XFASTINT (XWINDOW (w)->width)
a2db42d6 1134 != FRAME_WIDTH (XFRAME (WINDOW_FRAME (XWINDOW (w)))))
7ab12479
JB
1135 break;
1136#if 0
44fa5b1e
JB
1137 /* Ignore invisible and iconified frames. */
1138 if (! FRAME_VISIBLE_P (XFRAME (WINDOW_FRAME (XWINDOW (w))))
1139 || FRAME_ICONIFIED_P (XFRAME (WINDOW_FRAME (XWINDOW (w)))))
7ab12479
JB
1140 break;
1141#endif
1142 /* Ignore dedicated windows and minibuffers. */
1143 if (MINI_WINDOW_P (XWINDOW (w))
265a9e55 1144 || !NILP (XWINDOW (w)->dedicated))
7ab12479 1145 break;
265a9e55 1146 if (NILP (best_window)
7ab12479
JB
1147 || (XFASTINT (XWINDOW (best_window)->use_time)
1148 > XFASTINT (XWINDOW (w)->use_time)))
1149 best_window = w;
1150 break;
1151
1152 case DELETE_OTHER_WINDOWS:
1153 if (XWINDOW (w) != XWINDOW (obj))
1154 Fdelete_window (w);
1155 break;
1156
1157 case DELETE_BUFFER_WINDOWS:
1158 if (EQ (XWINDOW (w)->buffer, obj))
1159 {
1160 /* If we're deleting the buffer displayed in the only window
44fa5b1e 1161 on the frame, find a new buffer to display there. */
265a9e55 1162 if (NILP (XWINDOW (w)->parent))
7ab12479 1163 {
faa64cf7 1164 Lisp_Object new_buffer = Fother_buffer (obj, Qnil);
265a9e55 1165 if (NILP (new_buffer))
7ab12479
JB
1166 new_buffer
1167 = Fget_buffer_create (build_string ("*scratch*"));
1168 Fset_window_buffer (w, new_buffer);
1169 Fset_buffer (XWINDOW (w)->buffer);
1170 }
1171 else
1172 Fdelete_window (w);
1173 }
1174 break;
1175
1176 case GET_LARGEST_WINDOW:
1177#if 0
44fa5b1e
JB
1178 /* Ignore invisible and iconified frames. */
1179 if (! FRAME_VISIBLE_P (XFRAME (WINDOW_FRAME (XWINDOW (w))))
1180 || FRAME_ICONIFIED_P (XFRAME (WINDOW_FRAME (XWINDOW (w)))))
7ab12479
JB
1181 break;
1182#endif
1183 /* Ignore dedicated windows and minibuffers. */
1184 if (MINI_WINDOW_P (XWINDOW (w))
265a9e55 1185 || !NILP (XWINDOW (w)->dedicated))
7ab12479
JB
1186 break;
1187 {
1188 struct window *best_window_ptr = XWINDOW (best_window);
1189 struct window *w_ptr = XWINDOW (w);
265a9e55 1190 if (NILP (best_window) ||
7ab12479
JB
1191 (XFASTINT (w_ptr->height) * XFASTINT (w_ptr->width))
1192 > (XFASTINT (best_window_ptr->height)
1193 * XFASTINT (best_window_ptr->width)))
1194 best_window = w;
1195 }
1196 break;
1197
1198 case UNSHOW_BUFFER:
1199 if (EQ (XWINDOW (w)->buffer, obj))
1200 {
1201 /* Find another buffer to show in this window. */
faa64cf7 1202 Lisp_Object another_buffer = Fother_buffer (obj, Qnil);
265a9e55 1203 if (NILP (another_buffer))
7ab12479
JB
1204 another_buffer
1205 = Fget_buffer_create (build_string ("*scratch*"));
1206 Fset_window_buffer (w, another_buffer);
1207 if (EQ (w, selected_window))
1208 Fset_buffer (XWINDOW (w)->buffer);
1209 }
1210 break;
1211 }
4b206065
JB
1212
1213 if (EQ (w, last_window))
1214 break;
1215
7ab12479
JB
1216 w = next_window;
1217 }
7ab12479
JB
1218
1219 return best_window;
1220}
605be8af 1221
7ab12479
JB
1222DEFUN ("get-lru-window", Fget_lru_window, Sget_lru_window, 0, 1, 0,
1223 "Return the window least recently selected or used for display.\n\
44fa5b1e
JB
1224If optional argument FRAMES is t, search all frames. If FRAME is a\n\
1225frame, search only that frame.\n")
1226 (frames)
1227 Lisp_Object frames;
7ab12479
JB
1228{
1229 register Lisp_Object w;
1230 /* First try for a window that is full-width */
44fa5b1e 1231 w = window_loop (GET_LRU_WINDOW, Qt, 0, frames);
265a9e55 1232 if (!NILP (w) && !EQ (w, selected_window))
7ab12479
JB
1233 return w;
1234 /* If none of them, try the rest */
44fa5b1e 1235 return window_loop (GET_LRU_WINDOW, Qnil, 0, frames);
7ab12479
JB
1236}
1237
1238DEFUN ("get-largest-window", Fget_largest_window, Sget_largest_window, 0, 1, 0,
1239 "Return the largest window in area.\n\
44fa5b1e
JB
1240If optional argument FRAMES is t, search all frames. If FRAME is a\n\
1241frame, search only that frame.\n")
1242 (frame)
1243 Lisp_Object frame;
7ab12479
JB
1244{
1245 return window_loop (GET_LARGEST_WINDOW, Qnil, 0,
44fa5b1e 1246 frame);
7ab12479
JB
1247}
1248
1249DEFUN ("get-buffer-window", Fget_buffer_window, Sget_buffer_window, 1, 2, 0,
1250 "Return a window currently displaying BUFFER, or nil if none.\n\
44fa5b1e
JB
1251If optional argument FRAMES is t, search all frames. If FRAME is a\n\
1252frame, search only that frame.\n")
1253 (buffer, frame)
1254 Lisp_Object buffer, frame;
7ab12479
JB
1255{
1256 buffer = Fget_buffer (buffer);
1257 if (XTYPE (buffer) == Lisp_Buffer)
44fa5b1e 1258 return window_loop (GET_BUFFER_WINDOW, buffer, 1, frame);
7ab12479
JB
1259 else
1260 return Qnil;
1261}
1262
1263DEFUN ("delete-other-windows", Fdelete_other_windows, Sdelete_other_windows,
1264 0, 1, "",
44fa5b1e
JB
1265 "Make WINDOW (or the selected window) fill its frame.\n\
1266Only the frame WINDOW is on is affected.")
7ab12479
JB
1267 (window)
1268 Lisp_Object window;
1269{
1270 struct window *w;
1271 int opoint = point;
1272 struct buffer *obuf = current_buffer;
1273 int top;
1274
265a9e55 1275 if (NILP (window))
7ab12479
JB
1276 window = selected_window;
1277 else
605be8af 1278 CHECK_LIVE_WINDOW (window, 0);
7ab12479
JB
1279
1280 w = XWINDOW (window);
1281 top = XFASTINT (w->top);
1282
70728a80 1283 window_loop (DELETE_OTHER_WINDOWS, window, 0, WINDOW_FRAME (w));
7ab12479
JB
1284
1285 Fset_buffer (w->buffer);
1286 SET_PT (marker_position (w->start));
70728a80 1287 Frecenter (make_number (top - FRAME_MENU_BAR_LINES (XFRAME (WINDOW_FRAME (w)))));
7ab12479
JB
1288
1289 set_buffer_internal (obuf);
1290 SET_PT (opoint);
1291 return Qnil;
1292}
1293
1294DEFUN ("delete-windows-on", Fdelete_windows_on, Sdelete_windows_on,
1295 1, 1, "bDelete windows on (buffer): ",
1296 "Delete all windows showing BUFFER.")
1297 (buffer)
1298 Lisp_Object buffer;
1299{
265a9e55 1300 if (!NILP (buffer))
7ab12479
JB
1301 {
1302 buffer = Fget_buffer (buffer);
1303 CHECK_BUFFER (buffer, 0);
1304 window_loop (DELETE_BUFFER_WINDOWS, buffer, 0, Qt);
1305 }
1306 return Qnil;
1307}
1308
1309DEFUN ("replace-buffer-in-windows", Freplace_buffer_in_windows,
1310 Sreplace_buffer_in_windows,
1311 1, 1, "bReplace buffer in windows: ",
1312 "Replace BUFFER with some other buffer in all windows showing it.")
1313 (buffer)
1314 Lisp_Object buffer;
1315{
265a9e55 1316 if (!NILP (buffer))
7ab12479
JB
1317 {
1318 buffer = Fget_buffer (buffer);
1319 CHECK_BUFFER (buffer, 0);
1320 window_loop (UNSHOW_BUFFER, buffer, 0, Qt);
1321 }
1322 return Qnil;
1323}
1324\f
1325/* Set the height of WINDOW and all its inferiors. */
a481b3ea
JB
1326
1327/* The smallest acceptable dimensions for a window. Anything smaller
1328 might crash Emacs. */
1329#define MIN_SAFE_WINDOW_WIDTH (2)
1330#define MIN_SAFE_WINDOW_HEIGHT (2)
1331
1332/* Make sure that window_min_height and window_min_width are
1333 not too small; if they are, set them to safe minima. */
1334
1335static void
1336check_min_window_sizes ()
1337{
1338 /* Smaller values might permit a crash. */
1339 if (window_min_width < MIN_SAFE_WINDOW_WIDTH)
1340 window_min_width = MIN_SAFE_WINDOW_WIDTH;
1341 if (window_min_height < MIN_SAFE_WINDOW_HEIGHT)
1342 window_min_height = MIN_SAFE_WINDOW_HEIGHT;
1343}
1344
1345/* If *ROWS or *COLS are too small a size for FRAME, set them to the
1346 minimum allowable size. */
605be8af 1347void
a481b3ea 1348check_frame_size (frame, rows, cols)
605be8af
JB
1349 FRAME_PTR frame;
1350 int *rows, *cols;
a481b3ea
JB
1351{
1352 /* For height, we have to see whether the frame has a minibuffer, and
1353 whether it wants a mode line. */
1354 int min_height =
1355 ((FRAME_MINIBUF_ONLY_P (frame)
1356 || ! FRAME_HAS_MINIBUF_P (frame))
1357 ? MIN_SAFE_WINDOW_HEIGHT
1358 : 2 * MIN_SAFE_WINDOW_HEIGHT - 1);
1359
1360 if (*rows < min_height)
1361 *rows = min_height;
1362 if (*cols < MIN_SAFE_WINDOW_WIDTH)
1363 *cols = MIN_SAFE_WINDOW_WIDTH;
1364}
1365
7ab12479
JB
1366/* Normally the window is deleted if it gets too small.
1367 nodelete nonzero means do not do this.
1368 (The caller should check later and do so if appropriate) */
1369
1370set_window_height (window, height, nodelete)
1371 Lisp_Object window;
1372 int height;
1373 int nodelete;
1374{
1375 register struct window *w = XWINDOW (window);
1376 register struct window *c;
1377 int oheight = XFASTINT (w->height);
1378 int top, pos, lastbot, opos, lastobot;
1379 Lisp_Object child;
1380
a481b3ea
JB
1381 check_min_window_sizes ();
1382
7ab12479 1383 if (!nodelete
265a9e55 1384 && ! NILP (w->parent)
7ab12479
JB
1385 && height < window_min_height)
1386 {
1387 Fdelete_window (window);
1388 return;
1389 }
1390
1391 XFASTINT (w->last_modified) = 0;
1392 windows_or_buffers_changed++;
1393 XFASTINT (w->height) = height;
265a9e55 1394 if (!NILP (w->hchild))
7ab12479 1395 {
265a9e55 1396 for (child = w->hchild; !NILP (child); child = XWINDOW (child)->next)
7ab12479
JB
1397 {
1398 XWINDOW (child)->top = w->top;
1399 set_window_height (child, height, nodelete);
1400 }
1401 }
265a9e55 1402 else if (!NILP (w->vchild))
7ab12479
JB
1403 {
1404 lastbot = top = XFASTINT (w->top);
1405 lastobot = 0;
265a9e55 1406 for (child = w->vchild; !NILP (child); child = c->next)
7ab12479
JB
1407 {
1408 c = XWINDOW (child);
1409
1410 opos = lastobot + XFASTINT (c->height);
1411
1412 XFASTINT (c->top) = lastbot;
1413
1414 pos = (((opos * height) << 1) + oheight) / (oheight << 1);
1415
1416 /* Avoid confusion: inhibit deletion of child if becomes too small */
1417 set_window_height (child, pos + top - lastbot, 1);
1418
1419 /* Now advance child to next window,
1420 and set lastbot if child was not just deleted. */
1421 lastbot = pos + top;
1422 lastobot = opos;
1423 }
1424 /* Now delete any children that became too small. */
1425 if (!nodelete)
265a9e55 1426 for (child = w->vchild; !NILP (child); child = XWINDOW (child)->next)
7ab12479
JB
1427 {
1428 set_window_height (child, XINT (XWINDOW (child)->height), 0);
1429 }
1430 }
1431}
1432
1433/* Recursively set width of WINDOW and its inferiors. */
1434
1435set_window_width (window, width, nodelete)
1436 Lisp_Object window;
1437 int width;
1438 int nodelete;
1439{
1440 register struct window *w = XWINDOW (window);
1441 register struct window *c;
1442 int owidth = XFASTINT (w->width);
1443 int left, pos, lastright, opos, lastoright;
1444 Lisp_Object child;
1445
1446 if (!nodelete && width < window_min_width)
1447 {
1448 Fdelete_window (window);
1449 return;
1450 }
1451
1452 XFASTINT (w->last_modified) = 0;
1453 windows_or_buffers_changed++;
1454 XFASTINT (w->width) = width;
265a9e55 1455 if (!NILP (w->vchild))
7ab12479 1456 {
265a9e55 1457 for (child = w->vchild; !NILP (child); child = XWINDOW (child)->next)
7ab12479
JB
1458 {
1459 XWINDOW (child)->left = w->left;
1460 set_window_width (child, width, nodelete);
1461 }
1462 }
265a9e55 1463 else if (!NILP (w->hchild))
7ab12479
JB
1464 {
1465 lastright = left = XFASTINT (w->left);
1466 lastoright = 0;
265a9e55 1467 for (child = w->hchild; !NILP (child); child = c->next)
7ab12479
JB
1468 {
1469 c = XWINDOW (child);
1470
1471 opos = lastoright + XFASTINT (c->width);
1472
1473 XFASTINT (c->left) = lastright;
1474
1475 pos = (((opos * width) << 1) + owidth) / (owidth << 1);
1476
1477 /* Inhibit deletion for becoming too small */
1478 set_window_width (child, pos + left - lastright, 1);
1479
1480 /* Now advance child to next window,
1481 and set lastright if child was not just deleted. */
1482 lastright = pos + left, lastoright = opos;
1483 }
1484 /* Delete children that became too small */
1485 if (!nodelete)
265a9e55 1486 for (child = w->hchild; !NILP (child); child = XWINDOW (child)->next)
7ab12479
JB
1487 {
1488 set_window_width (child, XINT (XWINDOW (child)->width), 0);
1489 }
1490 }
1491}
1492\f
1d8d96fa 1493int window_select_count;
7ab12479
JB
1494
1495DEFUN ("set-window-buffer", Fset_window_buffer, Sset_window_buffer, 2, 2, 0,
1496 "Make WINDOW display BUFFER as its contents.\n\
1497BUFFER can be a buffer or buffer name.")
1498 (window, buffer)
1499 register Lisp_Object window, buffer;
1500{
1501 register Lisp_Object tem;
1502 register struct window *w = decode_window (window);
1503
1504 buffer = Fget_buffer (buffer);
1505 CHECK_BUFFER (buffer, 1);
1506
265a9e55 1507 if (NILP (XBUFFER (buffer)->name))
7ab12479
JB
1508 error ("Attempt to display deleted buffer");
1509
1510 tem = w->buffer;
265a9e55 1511 if (NILP (tem))
7ab12479
JB
1512 error ("Window is deleted");
1513 else if (! EQ (tem, Qt)) /* w->buffer is t when the window
1514 is first being set up. */
1515 {
265a9e55 1516 if (!NILP (w->dedicated) && !EQ (tem, buffer))
7ab12479
JB
1517 error ("Window is dedicated to %s\n", tem);
1518
1519 unshow_buffer (w);
1520 }
1521
1522 w->buffer = buffer;
270967b2 1523 w->hscroll = 0;
7ab12479
JB
1524 Fset_marker (w->pointm,
1525 make_number (BUF_PT (XBUFFER (buffer))),
1526 buffer);
1527 set_marker_restricted (w->start,
1528 make_number (XBUFFER (buffer)->last_window_start),
1529 buffer);
1530 w->start_at_line_beg = Qnil;
e36ab06b 1531 w->force_start = Qnil;
7ab12479
JB
1532 XFASTINT (w->last_modified) = 0;
1533 windows_or_buffers_changed++;
1534 if (EQ (window, selected_window))
1535 Fset_buffer (buffer);
1536
1537 return Qnil;
1538}
1539
1540DEFUN ("select-window", Fselect_window, Sselect_window, 1, 1, 0,
1541 "Select WINDOW. Most editing will apply to WINDOW's buffer.\n\
1542The main editor command loop selects the buffer of the selected window\n\
1543before each command.")
1544 (window)
1545 register Lisp_Object window;
1546{
1547 register struct window *w;
1548 register struct window *ow = XWINDOW (selected_window);
1549
605be8af 1550 CHECK_LIVE_WINDOW (window, 0);
7ab12479
JB
1551
1552 w = XWINDOW (window);
1553
265a9e55 1554 if (NILP (w->buffer))
7ab12479
JB
1555 error ("Trying to select deleted window or non-leaf window");
1556
1557 XFASTINT (w->use_time) = ++window_select_count;
1558 if (EQ (window, selected_window))
1559 return window;
1560
1561 Fset_marker (ow->pointm, make_number (BUF_PT (XBUFFER (ow->buffer))),
1562 ow->buffer);
1563
1564 selected_window = window;
44fa5b1e
JB
1565#ifdef MULTI_FRAME
1566 if (XFRAME (WINDOW_FRAME (w)) != selected_frame)
7ab12479 1567 {
44fa5b1e 1568 XFRAME (WINDOW_FRAME (w))->selected_window = window;
d5b2799e 1569 Fhandle_switch_frame (WINDOW_FRAME (w), Qnil);
7ab12479
JB
1570 }
1571 else
44fa5b1e 1572 selected_frame->selected_window = window;
7ab12479
JB
1573#endif
1574
1575 record_buffer (w->buffer);
1576 Fset_buffer (w->buffer);
1577
1578 /* Go to the point recorded in the window.
1579 This is important when the buffer is in more
1580 than one window. It also matters when
1581 redisplay_window has altered point after scrolling,
1582 because it makes the change only in the window. */
1583 {
1584 register int new_point = marker_position (w->pointm);
1585 if (new_point < BEGV)
1586 SET_PT (BEGV);
1587 if (new_point > ZV)
1588 SET_PT (ZV);
1589 else
1590 SET_PT (new_point);
1591 }
1592
1593 windows_or_buffers_changed++;
1594 return window;
1595}
1596
35aaf00c 1597DEFUN ("display-buffer", Fdisplay_buffer, Sdisplay_buffer, 1, 2,
6648f23a 1598 "BDisplay buffer: \nP",
7ab12479
JB
1599 "Make BUFFER appear in some window but don't select it.\n\
1600BUFFER can be a buffer or a buffer name.\n\
1601If BUFFER is shown already in some window, just use that one,\n\
1602unless the window is the selected window and the optional second\n\
46d3268a 1603argument NOT-THIS-WINDOW is non-nil (interactively, with prefix arg).\n\
7ab12479
JB
1604Returns the window displaying BUFFER.")
1605 (buffer, not_this_window)
1606 register Lisp_Object buffer, not_this_window;
1607{
1608 register Lisp_Object window;
1609
1610 buffer = Fget_buffer (buffer);
1611 CHECK_BUFFER (buffer, 0);
1612
265a9e55 1613 if (!NILP (Vdisplay_buffer_function))
7ab12479
JB
1614 return call2 (Vdisplay_buffer_function, buffer, not_this_window);
1615
265a9e55 1616 if (NILP (not_this_window)
7ab12479
JB
1617 && XBUFFER (XWINDOW (selected_window)->buffer) == XBUFFER (buffer))
1618 return selected_window;
1619
1620 window = Fget_buffer_window (buffer, Qnil);
265a9e55
JB
1621 if (!NILP (window)
1622 && (NILP (not_this_window) || !EQ (window, selected_window)))
7ab12479
JB
1623 return window;
1624
44fa5b1e
JB
1625#ifdef MULTI_FRAME
1626 /* If there are no frames open that have more than a minibuffer,
1627 we need to create a new frame. */
1628 if (pop_up_frames || last_nonminibuf_frame == 0)
7ab12479
JB
1629 {
1630 window
44fa5b1e 1631 = Fframe_selected_window (call0 (Vpop_up_frame_function));
7ab12479
JB
1632 Fset_window_buffer (window, buffer);
1633#if 0
d5b2799e 1634 Fhandle_switch_frame (XWINDOW (window)->frame, Qnil);
7ab12479
JB
1635#endif
1636 return window;
1637 }
44fa5b1e 1638#endif /* MULTI_FRAME */
7ab12479 1639
43bad991 1640 if (pop_up_windows
44fa5b1e
JB
1641#ifdef MULTI_FRAME
1642 || FRAME_MINIBUF_ONLY_P (selected_frame)
43bad991
JB
1643#endif
1644 )
7ab12479 1645 {
44fa5b1e 1646 Lisp_Object frames = Qnil;
43bad991 1647
44fa5b1e
JB
1648#ifdef MULTI_FRAME
1649 if (FRAME_MINIBUF_ONLY_P (selected_frame))
1650 XSET (frames, Lisp_Frame, last_nonminibuf_frame);
7ab12479
JB
1651#endif
1652 /* Don't try to create a window if would get an error */
1653 if (split_height_threshold < window_min_height << 1)
1654 split_height_threshold = window_min_height << 1;
1655
44fa5b1e 1656 window = Fget_largest_window (frames);
7ab12479 1657
265a9e55 1658 if (!NILP (window)
7ab12479 1659 && window_height (window) >= split_height_threshold
535e0b8e
JB
1660 && (XFASTINT (XWINDOW (window)->width)
1661 == FRAME_WIDTH (XFRAME (WINDOW_FRAME (XWINDOW (window))))))
7ab12479
JB
1662 window = Fsplit_window (window, Qnil, Qnil);
1663 else
1664 {
44fa5b1e 1665 window = Fget_lru_window (frames);
7ab12479
JB
1666 if ((EQ (window, selected_window)
1667 || EQ (XWINDOW (window)->parent, Qnil))
1668 && window_height (window) >= window_min_height << 1)
1669 window = Fsplit_window (window, Qnil, Qnil);
1670 }
1671 }
1672 else
1673 window = Fget_lru_window (Qnil);
1674
1675 Fset_window_buffer (window, buffer);
1676 return window;
1677}
1678
1679void
1680temp_output_buffer_show (buf)
1681 register Lisp_Object buf;
1682{
1683 register struct buffer *old = current_buffer;
1684 register Lisp_Object window;
1685 register struct window *w;
1686
1687 Fset_buffer (buf);
1688 XBUFFER (buf)->save_modified = MODIFF;
1689 BEGV = BEG;
1690 ZV = Z;
1691 SET_PT (BEG);
1692 clip_changed = 1;
1693 set_buffer_internal (old);
1694
1695 if (!EQ (Vtemp_buffer_show_function, Qnil))
1696 call1 (Vtemp_buffer_show_function, buf);
1697 else
1698 {
1699 window = Fdisplay_buffer (buf, Qnil);
1700
44fa5b1e
JB
1701#ifdef MULTI_FRAME
1702 if (XFRAME (XWINDOW (window)->frame) != selected_frame)
1703 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (window)));
1704#endif /* MULTI_FRAME */
7ab12479
JB
1705 Vminibuf_scroll_window = window;
1706 w = XWINDOW (window);
1707 XFASTINT (w->hscroll) = 0;
1708 set_marker_restricted (w->start, make_number (1), buf);
1709 set_marker_restricted (w->pointm, make_number (1), buf);
1710 }
1711}
1712\f
1713static
1714make_dummy_parent (window)
1715 Lisp_Object window;
1716{
1717 register Lisp_Object old, new;
1718 register struct window *o, *p;
1719
1720 old = window;
1721 XSETTYPE (old, Lisp_Vector);
1722 new = Fcopy_sequence (old);
1723 XSETTYPE (new, Lisp_Window);
1724
1725 o = XWINDOW (old);
1726 p = XWINDOW (new);
1727 XFASTINT (p->sequence_number) = ++sequence_number;
1728
1729 /* Put new into window structure in place of window */
1730 replace_window (window, new);
1731
1732 o->next = Qnil;
1733 o->prev = Qnil;
1734 o->vchild = Qnil;
1735 o->hchild = Qnil;
1736 o->parent = new;
1737
1738 p->start = Qnil;
1739 p->pointm = Qnil;
1740 p->buffer = Qnil;
1741}
1742
1743DEFUN ("split-window", Fsplit_window, Ssplit_window, 0, 3, "",
1744 "Split WINDOW, putting SIZE lines in the first of the pair.\n\
1745WINDOW defaults to selected one and SIZE to half its size.\n\
1746If optional third arg HOR-FLAG is non-nil, split side by side\n\
1747and put SIZE columns in the first of the pair.")
1748 (window, chsize, horflag)
1749 Lisp_Object window, chsize, horflag;
1750{
1751 register Lisp_Object new;
1752 register struct window *o, *p;
1753 register int size;
1754
265a9e55 1755 if (NILP (window))
7ab12479
JB
1756 window = selected_window;
1757 else
605be8af 1758 CHECK_LIVE_WINDOW (window, 0);
7ab12479
JB
1759
1760 o = XWINDOW (window);
1761
265a9e55 1762 if (NILP (chsize))
7ab12479 1763 {
265a9e55 1764 if (!NILP (horflag))
7ab12479
JB
1765 /* Round odd size up, since this is for the left-hand window,
1766 and it will lose a column for the separators. */
1767 size = ((XFASTINT (o->width) + 1) & -2) >> 1;
1768 else
1769 size = XFASTINT (o->height) >> 1;
1770 }
1771 else
1772 {
1773 CHECK_NUMBER (chsize, 1);
1774 size = XINT (chsize);
1775 }
1776
1777 if (MINI_WINDOW_P (o))
1778 error ("Attempt to split minibuffer window");
44fa5b1e
JB
1779 else if (FRAME_NO_SPLIT_P (XFRAME (WINDOW_FRAME (o))))
1780 error ("Attempt to split unsplittable frame");
7ab12479 1781
a481b3ea 1782 check_min_window_sizes ();
7ab12479 1783
265a9e55 1784 if (NILP (horflag))
7ab12479
JB
1785 {
1786 if (size < window_min_height
1787 || size + window_min_height > XFASTINT (o->height))
1788 args_out_of_range_3 (window, chsize, horflag);
265a9e55
JB
1789 if (NILP (o->parent)
1790 || NILP (XWINDOW (o->parent)->vchild))
7ab12479
JB
1791 {
1792 make_dummy_parent (window);
1793 new = o->parent;
1794 XWINDOW (new)->vchild = window;
1795 }
1796 }
1797 else
1798 {
1799 if (size < window_min_width
1800 || size + window_min_width > XFASTINT (o->width))
1801 args_out_of_range_3 (window, chsize, horflag);
265a9e55
JB
1802 if (NILP (o->parent)
1803 || NILP (XWINDOW (o->parent)->hchild))
7ab12479
JB
1804 {
1805 make_dummy_parent (window);
1806 new = o->parent;
1807 XWINDOW (new)->hchild = window;
1808 }
1809 }
1810
1811 /* Now we know that window's parent is a vertical combination
1812 if we are dividing vertically, or a horizontal combination
1813 if we are making side-by-side windows */
1814
1815 windows_or_buffers_changed++;
1816 new = make_window ();
1817 p = XWINDOW (new);
1818
44fa5b1e 1819 p->frame = o->frame;
7ab12479 1820 p->next = o->next;
265a9e55 1821 if (!NILP (p->next))
7ab12479
JB
1822 XWINDOW (p->next)->prev = new;
1823 p->prev = window;
1824 o->next = new;
1825 p->parent = o->parent;
1826 p->buffer = Qt;
1827
1828 Fset_window_buffer (new, o->buffer);
1829
44fa5b1e 1830 /* Apportion the available frame space among the two new windows */
7ab12479 1831
265a9e55 1832 if (!NILP (horflag))
7ab12479
JB
1833 {
1834 p->height = o->height;
1835 p->top = o->top;
1836 XFASTINT (p->width) = XFASTINT (o->width) - size;
1837 XFASTINT (o->width) = size;
1838 XFASTINT (p->left) = XFASTINT (o->left) + size;
1839 }
1840 else
1841 {
1842 p->left = o->left;
1843 p->width = o->width;
1844 XFASTINT (p->height) = XFASTINT (o->height) - size;
1845 XFASTINT (o->height) = size;
1846 XFASTINT (p->top) = XFASTINT (o->top) + size;
1847 }
1848
1849 return new;
1850}
1851\f
1852DEFUN ("enlarge-window", Fenlarge_window, Senlarge_window, 1, 2, "p",
1853 "Make current window ARG lines bigger.\n\
1854From program, optional second arg non-nil means grow sideways ARG columns.")
1855 (n, side)
1856 register Lisp_Object n, side;
1857{
1858 CHECK_NUMBER (n, 0);
265a9e55 1859 change_window_height (XINT (n), !NILP (side));
7ab12479
JB
1860 return Qnil;
1861}
1862
1863DEFUN ("shrink-window", Fshrink_window, Sshrink_window, 1, 2, "p",
1864 "Make current window ARG lines smaller.\n\
1865From program, optional second arg non-nil means shrink sideways ARG columns.")
1866 (n, side)
1867 register Lisp_Object n, side;
1868{
1869 CHECK_NUMBER (n, 0);
265a9e55 1870 change_window_height (-XINT (n), !NILP (side));
7ab12479
JB
1871 return Qnil;
1872}
1873
1874int
1875window_height (window)
1876 Lisp_Object window;
1877{
1878 register struct window *p = XWINDOW (window);
1879 return XFASTINT (p->height);
1880}
1881
1882int
1883window_width (window)
1884 Lisp_Object window;
1885{
1886 register struct window *p = XWINDOW (window);
1887 return XFASTINT (p->width);
1888}
1889
05c2896a
JB
1890#define MINSIZE(w) \
1891 (widthflag \
1892 ? window_min_width \
1893 : (MINI_WINDOW_P (XWINDOW (w)) ? 1 : window_min_height))
7ab12479
JB
1894
1895#define CURBEG(w) \
05c2896a 1896 *(widthflag ? (int *) &(XWINDOW (w)->left) : (int *) &(XWINDOW (w)->top))
7ab12479
JB
1897
1898#define CURSIZE(w) \
05c2896a 1899 *(widthflag ? (int *) &(XWINDOW (w)->width) : (int *) &(XWINDOW (w)->height))
7ab12479
JB
1900
1901/* Unlike set_window_height, this function
1902 also changes the heights of the siblings so as to
1903 keep everything consistent. */
1904
1905change_window_height (delta, widthflag)
1906 register int delta;
1907 int widthflag;
1908{
1909 register Lisp_Object parent;
1910 Lisp_Object window;
1911 register struct window *p;
1912 int *sizep;
1913 int (*sizefun) () = widthflag ? window_width : window_height;
1914 register int (*setsizefun) () = (widthflag
1915 ? set_window_width
1916 : set_window_height);
1917
a481b3ea 1918 check_min_window_sizes ();
7ab12479
JB
1919
1920 window = selected_window;
1921 while (1)
1922 {
1923 p = XWINDOW (window);
1924 parent = p->parent;
265a9e55 1925 if (NILP (parent))
7ab12479
JB
1926 {
1927 if (widthflag)
1928 error ("No other window to side of this one");
1929 break;
1930 }
265a9e55
JB
1931 if (widthflag ? !NILP (XWINDOW (parent)->hchild)
1932 : !NILP (XWINDOW (parent)->vchild))
7ab12479
JB
1933 break;
1934 window = parent;
1935 }
1936
05c2896a 1937 sizep = &CURSIZE (window);
7ab12479 1938
05c2896a 1939 if (*sizep + delta < MINSIZE (window))
7ab12479
JB
1940 {
1941 Fdelete_window (window);
1942 return;
1943 }
1944
1945 {
1946 register int maxdelta;
7ab12479 1947
265a9e55
JB
1948 maxdelta = (!NILP (parent) ? (*sizefun) (parent) - *sizep
1949 : !NILP (p->next) ? (*sizefun) (p->next) - MINSIZE (p->next)
1950 : !NILP (p->prev) ? (*sizefun) (p->prev) - MINSIZE (p->prev)
44fa5b1e
JB
1951 /* This is a frame with only one window, a minibuffer-only
1952 or a minibufferless frame. */
d5783c40 1953 : (delta = 0));
7ab12479
JB
1954
1955 if (delta > maxdelta)
1956 /* This case traps trying to make the minibuffer
44fa5b1e
JB
1957 the full frame, or make the only window aside from the
1958 minibuffer the full frame. */
7ab12479 1959 delta = maxdelta;
d5783c40
JB
1960
1961 if (delta == 0)
1962 return;
7ab12479
JB
1963 }
1964
265a9e55 1965 if (!NILP (p->next) &&
7ab12479
JB
1966 (*sizefun) (p->next) - delta >= MINSIZE (p->next))
1967 {
1968 (*setsizefun) (p->next, (*sizefun) (p->next) - delta, 0);
1969 (*setsizefun) (window, *sizep + delta, 0);
05c2896a 1970 CURBEG (p->next) += delta;
7ab12479
JB
1971 /* This does not change size of p->next,
1972 but it propagates the new top edge to its children */
1973 (*setsizefun) (p->next, (*sizefun) (p->next), 0);
1974 }
265a9e55 1975 else if (!NILP (p->prev) &&
7ab12479
JB
1976 (*sizefun) (p->prev) - delta >= MINSIZE (p->prev))
1977 {
1978 (*setsizefun) (p->prev, (*sizefun) (p->prev) - delta, 0);
05c2896a 1979 CURBEG (window) -= delta;
7ab12479
JB
1980 (*setsizefun) (window, *sizep + delta, 0);
1981 }
1982 else
1983 {
1984 register int delta1;
1985 register int opht = (*sizefun) (parent);
1986
1987 /* If trying to grow this window to or beyond size of the parent,
1988 make delta1 so big that, on shrinking back down,
1989 all the siblings end up with less than one line and are deleted. */
1990 if (opht <= *sizep + delta)
1991 delta1 = opht * opht * 2;
1992 /* Otherwise, make delta1 just right so that if we add delta1
1993 lines to this window and to the parent, and then shrink
1994 the parent back to its original size, the new proportional
1995 size of this window will increase by delta. */
1996 else
1997 delta1 = (delta * opht * 100) / ((opht - *sizep - delta) * 100);
1998
1999 /* Add delta1 lines or columns to this window, and to the parent,
2000 keeping things consistent while not affecting siblings. */
05c2896a 2001 CURSIZE (parent) = opht + delta1;
7ab12479
JB
2002 (*setsizefun) (window, *sizep + delta1, 0);
2003
2004 /* Squeeze out delta1 lines or columns from our parent,
2005 shriking this window and siblings proportionately.
2006 This brings parent back to correct size.
2007 Delta1 was calculated so this makes this window the desired size,
2008 taking it all out of the siblings. */
2009 (*setsizefun) (parent, opht, 0);
2010 }
2011
2012 XFASTINT (p->last_modified) = 0;
2013}
2014#undef MINSIZE
2015#undef CURBEG
2016#undef CURSIZE
2017
2018\f
2019/* Return number of lines of text (not counting mode line) in W. */
2020
2021int
2022window_internal_height (w)
2023 struct window *w;
2024{
2025 int ht = XFASTINT (w->height);
2026
2027 if (MINI_WINDOW_P (w))
2028 return ht;
2029
265a9e55
JB
2030 if (!NILP (w->parent) || !NILP (w->vchild) || !NILP (w->hchild)
2031 || !NILP (w->next) || !NILP (w->prev)
44fa5b1e 2032 || FRAME_WANTS_MODELINE_P (XFRAME (WINDOW_FRAME (w))))
7ab12479
JB
2033 return ht - 1;
2034
2035 return ht;
2036}
2037
535e0b8e
JB
2038
2039/* Return the number of columns in W.
a3c87d4e 2040 Don't count columns occupied by scroll bars or the vertical bar
535e0b8e
JB
2041 separating W from the sibling to its right. */
2042int
2043window_internal_width (w)
2044 struct window *w;
2045{
2046 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
2047 int left = XINT (w->left);
2048 int width = XINT (w->width);
2049
2050 /* If this window is flush against the right edge of the frame, its
2051 internal width is its full width. */
2052 if (left + width >= FRAME_WIDTH (f))
2053 return width;
2054
2055 /* If we are not flush right, then our rightmost columns are
2056 occupied by some sort of separator. */
2057
a3c87d4e
JB
2058 /* Scroll bars occupy a few columns. */
2059 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
2060 return width - VERTICAL_SCROLL_BAR_WIDTH;
535e0b8e
JB
2061
2062 /* The column of `|' characters separating side-by-side windows
2063 occupies one column only. */
2064 return width - 1;
2065}
2066
2067
7ab12479
JB
2068/* Scroll contents of window WINDOW up N lines. */
2069
2070void
f8026fd8 2071window_scroll (window, n, noerror)
7ab12479
JB
2072 Lisp_Object window;
2073 int n;
f8026fd8 2074 int noerror;
7ab12479
JB
2075{
2076 register struct window *w = XWINDOW (window);
2077 register int opoint = point;
2078 register int pos;
2079 register int ht = window_internal_height (w);
2080 register Lisp_Object tem;
2081 int lose;
2082 Lisp_Object bolp, nmoved;
2083
2084 XFASTINT (tem) = point;
2085 tem = Fpos_visible_in_window_p (tem, window);
2086
265a9e55 2087 if (NILP (tem))
7ab12479
JB
2088 {
2089 Fvertical_motion (make_number (- ht / 2));
2090 XFASTINT (tem) = point;
2091 Fset_marker (w->start, tem, w->buffer);
2092 w->force_start = Qt;
2093 }
2094
2095 SET_PT (marker_position (w->start));
2096 lose = n < 0 && point == BEGV;
2097 Fvertical_motion (make_number (n));
2098 pos = point;
2099 bolp = Fbolp ();
2100 SET_PT (opoint);
2101
2102 if (lose)
f8026fd8
JB
2103 {
2104 if (noerror)
2105 return;
2106 else
2107 Fsignal (Qbeginning_of_buffer, Qnil);
2108 }
7ab12479
JB
2109
2110 if (pos < ZV)
7ab12479
JB
2111 {
2112 set_marker_restricted (w->start, make_number (pos), w->buffer);
2113 w->start_at_line_beg = bolp;
2114 w->update_mode_line = Qt;
2115 XFASTINT (w->last_modified) = 0;
2116 if (pos > opoint)
2117 SET_PT (pos);
2118 if (n < 0)
2119 {
2120 SET_PT (pos);
2121 tem = Fvertical_motion (make_number (ht));
2122 if (point > opoint || XFASTINT (tem) < ht)
2123 SET_PT (opoint);
2124 else
2125 Fvertical_motion (make_number (-1));
2126 }
2127 }
2128 else
f8026fd8
JB
2129 {
2130 if (noerror)
2131 return;
2132 else
2133 Fsignal (Qend_of_buffer, Qnil);
2134 }
7ab12479
JB
2135}
2136\f
2137/* This is the guts of Fscroll_up and Fscroll_down. */
2138
2139static void
2140scroll_command (n, direction)
2141 register Lisp_Object n;
2142 int direction;
2143{
2144 register int defalt;
2145 int count = specpdl_ptr - specpdl;
2146
95605e15
JB
2147 /* If selected window's buffer isn't current, make it current for the moment.
2148 But don't screw up if window_scroll gets an error. */
7ab12479 2149 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
95605e15
JB
2150 {
2151 record_unwind_protect (save_excursion_restore, save_excursion_save ());
2152 Fset_buffer (XWINDOW (selected_window)->buffer);
2153 }
7ab12479
JB
2154
2155 defalt = (window_internal_height (XWINDOW (selected_window))
2156 - next_screen_context_lines);
2157 defalt = direction * (defalt < 1 ? 1 : defalt);
2158
265a9e55 2159 if (NILP (n))
f8026fd8 2160 window_scroll (selected_window, defalt, 0);
7ab12479 2161 else if (EQ (n, Qminus))
f8026fd8 2162 window_scroll (selected_window, - defalt, 0);
7ab12479
JB
2163 else
2164 {
2165 n = Fprefix_numeric_value (n);
f8026fd8 2166 window_scroll (selected_window, XINT (n) * direction, 0);
7ab12479 2167 }
95605e15
JB
2168
2169 unbind_to (count, Qnil);
7ab12479
JB
2170}
2171
2172DEFUN ("scroll-up", Fscroll_up, Sscroll_up, 0, 1, "P",
2173 "Scroll text of current window upward ARG lines; or near full screen if no ARG.\n\
2174A near full screen is `next-screen-context-lines' less than a full screen.\n\
2175When calling from a program, supply a number as argument or nil.")
2176 (n)
2177 Lisp_Object n;
2178{
2179 scroll_command (n, 1);
2180 return Qnil;
2181}
2182
2183DEFUN ("scroll-down", Fscroll_down, Sscroll_down, 0, 1, "P",
2184 "Scroll text of current window downward ARG lines; or near full screen if no ARG.\n\
2185A near full screen is `next-screen-context-lines' less than a full screen.\n\
2186When calling from a program, supply a number as argument or nil.")
2187 (n)
2188 Lisp_Object n;
2189{
2190 scroll_command (n, -1);
2191 return Qnil;
2192}
2193
2194DEFUN ("scroll-other-window", Fscroll_other_window, Sscroll_other_window, 0, 1, "P",
99e5add3 2195 "Scroll next window upward ARG lines; or near full screen if no ARG.\n\
7ab12479
JB
2196The next window is the one below the current one; or the one at the top\n\
2197if the current one is at the bottom.\n\
2198When calling from a program, supply a number as argument or nil.\n\
2199\n\
2200If in the minibuffer, `minibuf-scroll-window' if non-nil\n\
2201specifies the window to scroll.\n\
2202If `other-window-scroll-buffer' is non-nil, scroll the window\n\
2203showing that buffer, popping the buffer up if necessary.")
2204 (n)
2205 register Lisp_Object n;
2206{
2207 register Lisp_Object window;
2208 register int ht;
2209 register struct window *w;
2210 register int count = specpdl_ptr - specpdl;
2211
2212 if (MINI_WINDOW_P (XWINDOW (selected_window))
265a9e55 2213 && !NILP (Vminibuf_scroll_window))
7ab12479
JB
2214 window = Vminibuf_scroll_window;
2215 /* If buffer is specified, scroll that buffer. */
265a9e55 2216 else if (!NILP (Vother_window_scroll_buffer))
7ab12479
JB
2217 {
2218 window = Fget_buffer_window (Vother_window_scroll_buffer, Qnil);
265a9e55 2219 if (NILP (window))
7ab12479
JB
2220 window = Fdisplay_buffer (Vother_window_scroll_buffer, Qt);
2221 }
2222 else
dbc4e1c1
JB
2223 {
2224 /* Nothing specified; look for a neighboring window on the same
2225 frame. */
2226 window = Fnext_window (selected_window, Qnil, Qnil);
2227
2228 if (EQ (window, selected_window))
2229 /* That didn't get us anywhere; look for a window on another
2230 visible frame. */
2231 do
2232 window = Fnext_window (window, Qnil, Qt);
2233 while (! FRAME_VISIBLE_P (XFRAME (WINDOW_FRAME (XWINDOW (window))))
2234 && ! EQ (window, selected_window));
2235 }
2236
605be8af 2237 CHECK_LIVE_WINDOW (window, 0);
7ab12479
JB
2238
2239 if (EQ (window, selected_window))
2240 error ("There is no other window");
2241
2242 w = XWINDOW (window);
2243 ht = window_internal_height (w);
2244
2245 /* Don't screw up if window_scroll gets an error. */
2246 record_unwind_protect (save_excursion_restore, save_excursion_save ());
2247
2248 Fset_buffer (w->buffer);
2249 SET_PT (marker_position (w->pointm));
2250
265a9e55 2251 if (NILP (n))
f8026fd8 2252 window_scroll (window, ht - next_screen_context_lines, 1);
7ab12479 2253 else if (EQ (n, Qminus))
f8026fd8 2254 window_scroll (window, next_screen_context_lines - ht, 1);
7ab12479
JB
2255 else
2256 {
2257 if (XTYPE (n) == Lisp_Cons)
2258 n = Fcar (n);
2259 CHECK_NUMBER (n, 0);
f8026fd8 2260 window_scroll (window, XINT (n), 1);
7ab12479
JB
2261 }
2262
2263 Fset_marker (w->pointm, make_number (point), Qnil);
f4e7b2c2 2264 unbind_to (count, Qnil);
7ab12479
JB
2265
2266 return Qnil;
2267}
2268\f
2269DEFUN ("scroll-left", Fscroll_left, Sscroll_left, 1, 1, "P",
2270 "Scroll selected window display ARG columns left.\n\
2271Default for ARG is window width minus 2.")
2272 (arg)
2273 register Lisp_Object arg;
2274{
2275
265a9e55 2276 if (NILP (arg))
b8baad40 2277 XFASTINT (arg) = window_internal_width (XWINDOW (selected_window)) - 2;
7ab12479
JB
2278 else
2279 arg = Fprefix_numeric_value (arg);
2280
2281 return
2282 Fset_window_hscroll (selected_window,
2283 make_number (XINT (XWINDOW (selected_window)->hscroll)
2284 + XINT (arg)));
2285}
2286
2287DEFUN ("scroll-right", Fscroll_right, Sscroll_right, 1, 1, "P",
2288 "Scroll selected window display ARG columns right.\n\
2289Default for ARG is window width minus 2.")
2290 (arg)
2291 register Lisp_Object arg;
2292{
265a9e55 2293 if (NILP (arg))
b8baad40 2294 XFASTINT (arg) = window_internal_width (XWINDOW (selected_window)) - 2;
7ab12479
JB
2295 else
2296 arg = Fprefix_numeric_value (arg);
2297
2298 return
2299 Fset_window_hscroll (selected_window,
2300 make_number (XINT (XWINDOW (selected_window)->hscroll)
2301 - XINT (arg)));
2302}
2303
2304DEFUN ("recenter", Frecenter, Srecenter, 0, 1, "P",
44fa5b1e 2305 "Center point in window and redisplay frame. With ARG, put point on line ARG.\n\
7ab12479 2306The desired position of point is always relative to the current window.\n\
44fa5b1e
JB
2307Just C-u as prefix means put point in the center of the window.\n\
2308No arg (i.e., it is nil) erases the entire frame and then\n\
2309redraws with point in the center of the current window.")
7ab12479
JB
2310 (n)
2311 register Lisp_Object n;
2312{
2313 register struct window *w = XWINDOW (selected_window);
2314 register int ht = window_internal_height (w);
2315 register int opoint = point;
2316
265a9e55 2317 if (NILP (n))
7ab12479 2318 {
44fa5b1e 2319 extern int frame_garbaged;
7ab12479 2320
44fa5b1e 2321 SET_FRAME_GARBAGED (XFRAME (WINDOW_FRAME (w)));
7ab12479
JB
2322 XFASTINT (n) = ht / 2;
2323 }
2324 else if (XTYPE (n) == Lisp_Cons) /* Just C-u. */
2325 {
2326 XFASTINT (n) = ht / 2;
2327 }
2328 else
2329 {
2330 n = Fprefix_numeric_value (n);
2331 CHECK_NUMBER (n, 0);
2332 }
2333
2334 if (XINT (n) < 0)
2335 XSETINT (n, XINT (n) + ht);
2336
2337 XSETINT (n, - XINT (n));
2338
2339 Fvertical_motion (n);
2340 Fset_marker (w->start, make_number (point), w->buffer);
2341 w->start_at_line_beg = Fbolp ();
2342
2343 SET_PT (opoint);
2344 w->force_start = Qt;
2345
2346 return Qnil;
2347}
2348\f
2349DEFUN ("move-to-window-line", Fmove_to_window_line, Smove_to_window_line,
2350 1, 1, "P",
2351 "Position point relative to window.\n\
2352With no argument, position text at center of window.\n\
44fa5b1e 2353An argument specifies frame line; zero means top of window,\n\
7ab12479
JB
2354negative means relative to bottom of window.")
2355 (arg)
2356 register Lisp_Object arg;
2357{
2358 register struct window *w = XWINDOW (selected_window);
2359 register int height = window_internal_height (w);
2360 register int start;
2361
265a9e55 2362 if (NILP (arg))
7ab12479
JB
2363 XFASTINT (arg) = height / 2;
2364 else
2365 {
2366 arg = Fprefix_numeric_value (arg);
2367 if (XINT (arg) < 0)
2368 XSETINT (arg, XINT (arg) + height);
2369 }
2370
2371 start = marker_position (w->start);
2372 if (start < BEGV || start > ZV)
2373 {
2374 Fvertical_motion (make_number (- height / 2));
2375 Fset_marker (w->start, make_number (point), w->buffer);
2376 w->start_at_line_beg = Fbolp ();
2377 w->force_start = Qt;
2378 }
2379 else
2380 SET_PT (start);
2381
2382 return Fvertical_motion (arg);
2383}
2384\f
2385struct save_window_data
2386 {
2387 int size_from_Lisp_Vector_struct;
2388 struct Lisp_Vector *next_from_Lisp_Vector_struct;
44fa5b1e 2389 Lisp_Object frame_width, frame_height;
bdc727bf 2390 Lisp_Object selected_frame;
7ab12479
JB
2391 Lisp_Object current_window;
2392 Lisp_Object current_buffer;
2393 Lisp_Object minibuf_scroll_window;
2394 Lisp_Object root_window;
bdc727bf 2395 Lisp_Object focus_frame;
7ab12479
JB
2396 /* A vector, interpreted as a struct saved_window */
2397 Lisp_Object saved_windows;
2398 };
ff06df24
JB
2399
2400/* Arg to Fmake_vector */
2401#define SAVE_WINDOW_DATA_SIZE \
2402 ((sizeof (struct save_window_data) \
2403 - (sizeof (struct Lisp_Vector) \
2404 /* Don't count the contents member of the struct Lisp_Vector */ \
2405 - sizeof (Lisp_Object))) \
2406 / sizeof (Lisp_Object))
7ab12479
JB
2407
2408/* This is saved as a Lisp_Vector */
2409struct saved_window
2410 {
2411 /* these first two must agree with struct Lisp_Vector in lisp.h */
2412 int size_from_Lisp_Vector_struct;
2413 struct Lisp_Vector *next_from_Lisp_Vector_struct;
2414
2415 Lisp_Object window;
2416 Lisp_Object buffer, start, pointm, mark;
2417 Lisp_Object left, top, width, height, hscroll;
2418 Lisp_Object parent, prev;
2419 Lisp_Object start_at_line_beg;
2420 Lisp_Object display_table;
2421 };
2422#define SAVED_WINDOW_VECTOR_SIZE 14 /* Arg to Fmake_vector */
2423
2424#define SAVED_WINDOW_N(swv,n) \
2425 ((struct saved_window *) (XVECTOR ((swv)->contents[(n)])))
2426
2427DEFUN ("window-configuration-p", Fwindow_configuration_p, Swindow_configuration_p, 1, 1, 0,
2428 "T if OBJECT is a window-configration object.")
2429 (obj)
2430 Lisp_Object obj;
2431{
2432 if (XTYPE (obj) == Lisp_Window_Configuration)
2433 return Qt;
2434 return Qnil;
2435}
2436
2437
d5b2799e
RS
2438DEFUN ("set-window-configuration", Fset_window_configuration,
2439 Sset_window_configuration, 1, 1, 0,
7ab12479
JB
2440 "Set the configuration of windows and buffers as specified by CONFIGURATION.\n\
2441CONFIGURATION must be a value previously returned\n\
2442by `current-window-configuration' (which see).")
2f83aebe
JB
2443 (configuration)
2444 Lisp_Object configuration;
7ab12479 2445{
7ab12479
JB
2446 register struct save_window_data *data;
2447 struct Lisp_Vector *saved_windows;
7ab12479 2448 Lisp_Object new_current_buffer;
fd482be5 2449 Lisp_Object frame;
44fa5b1e 2450 FRAME_PTR f;
7ab12479 2451
2f83aebe 2452 while (XTYPE (configuration) != Lisp_Window_Configuration)
7ab12479 2453 {
2f83aebe
JB
2454 configuration = wrong_type_argument (intern ("window-configuration-p"),
2455 configuration);
7ab12479
JB
2456 }
2457
2f83aebe 2458 data = (struct save_window_data *) XVECTOR (configuration);
7ab12479
JB
2459 saved_windows = XVECTOR (data->saved_windows);
2460
7ab12479 2461 new_current_buffer = data->current_buffer;
265a9e55 2462 if (NILP (XBUFFER (new_current_buffer)->name))
7ab12479
JB
2463 new_current_buffer = Qnil;
2464
fd482be5
JB
2465 frame = XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame;
2466 f = XFRAME (frame);
9ace597f 2467
fd482be5
JB
2468 /* If f is a dead frame, don't bother rebuilding its window tree.
2469 However, there is other stuff we should still try to do below. */
2470 if (FRAME_LIVE_P (f))
7ab12479 2471 {
fd482be5
JB
2472 register struct window *w;
2473 register struct saved_window *p;
2474 int k;
2475
2476 /* If the frame has been resized since this window configuration was
2477 made, we change the frame to the size specified in the
2478 configuration, restore the configuration, and then resize it
2479 back. We keep track of the prevailing height in these variables. */
2480 int previous_frame_height = FRAME_HEIGHT (f);
2481 int previous_frame_width = FRAME_WIDTH (f);
2482
2483 if (XFASTINT (data->frame_height) != previous_frame_height
2484 || XFASTINT (data->frame_width) != previous_frame_width)
2485 change_frame_size (f, data->frame_height, data->frame_width, 0, 0);
2486
2487 windows_or_buffers_changed++;
2488
2489 /* Kludge Alert!
2490 Mark all windows now on frame as "deleted".
2491 Restoring the new configuration "undeletes" any that are in it.
2492
2493 Save their current buffers in their height fields, since we may
2494 need it later, if a buffer saved in the configuration is now
2495 dead. */
2496 delete_all_subwindows (XWINDOW (FRAME_ROOT_WINDOW (f)));
2497
2498 for (k = 0; k < saved_windows->size; k++)
2499 {
2500 p = SAVED_WINDOW_N (saved_windows, k);
2501 w = XWINDOW (p->window);
2502 w->next = Qnil;
7ab12479 2503
fd482be5
JB
2504 if (!NILP (p->parent))
2505 w->parent = SAVED_WINDOW_N (saved_windows,
2506 XFASTINT (p->parent))->window;
2507 else
2508 w->parent = Qnil;
7ab12479 2509
fd482be5 2510 if (!NILP (p->prev))
7ab12479 2511 {
fd482be5
JB
2512 w->prev = SAVED_WINDOW_N (saved_windows,
2513 XFASTINT (p->prev))->window;
2514 XWINDOW (w->prev)->next = p->window;
2515 }
2516 else
2517 {
2518 w->prev = Qnil;
2519 if (!NILP (w->parent))
2520 {
2521 if (EQ (p->width, XWINDOW (w->parent)->width))
2522 {
2523 XWINDOW (w->parent)->vchild = p->window;
2524 XWINDOW (w->parent)->hchild = Qnil;
2525 }
2526 else
2527 {
2528 XWINDOW (w->parent)->hchild = p->window;
2529 XWINDOW (w->parent)->vchild = Qnil;
2530 }
2531 }
2532 }
2533
2534 /* If we squirreled away the buffer in the window's height,
2535 restore it now. */
2536 if (XTYPE (w->height) == Lisp_Buffer)
2537 w->buffer = w->height;
2538 w->left = p->left;
2539 w->top = p->top;
2540 w->width = p->width;
2541 w->height = p->height;
2542 w->hscroll = p->hscroll;
2543 w->display_table = p->display_table;
2544 XFASTINT (w->last_modified) = 0;
2545
2546 /* Reinstall the saved buffer and pointers into it. */
2547 if (NILP (p->buffer))
2548 w->buffer = p->buffer;
2549 else
2550 {
2551 if (!NILP (XBUFFER (p->buffer)->name))
2552 /* If saved buffer is alive, install it. */
2553 {
2554 w->buffer = p->buffer;
2555 w->start_at_line_beg = p->start_at_line_beg;
2556 set_marker_restricted (w->start,
2557 Fmarker_position (p->start),
2558 w->buffer);
2559 set_marker_restricted (w->pointm,
2560 Fmarker_position (p->pointm),
2561 w->buffer);
2562 Fset_marker (XBUFFER (w->buffer)->mark,
2563 Fmarker_position (p->mark), w->buffer);
2564
2565 /* As documented in Fcurrent_window_configuration, don't
2566 save the location of point in the buffer which was current
2567 when the window configuration was recorded. */
2568 if (!EQ (p->buffer, new_current_buffer) &&
2569 XBUFFER (p->buffer) == current_buffer)
2570 Fgoto_char (w->pointm);
2571 }
2572 else if (NILP (XBUFFER (w->buffer)->name))
2573 /* Else if window's old buffer is dead too, get a live one. */
7ab12479 2574 {
fd482be5
JB
2575 w->buffer = Fcdr (Fcar (Vbuffer_alist));
2576 /* This will set the markers to beginning of visible
2577 range. */
2578 set_marker_restricted (w->start, make_number (0), w->buffer);
2579 set_marker_restricted (w->pointm, make_number (0),w->buffer);
2580 w->start_at_line_beg = Qt;
7ab12479
JB
2581 }
2582 else
fd482be5
JB
2583 /* Keeping window's old buffer; make sure the markers
2584 are real. Else if window's old buffer is dead too,
2585 get a live one. */
7ab12479 2586 {
fd482be5
JB
2587 /* Set window markers at start of visible range. */
2588 if (XMARKER (w->start)->buffer == 0)
2589 set_marker_restricted (w->start, make_number (0),
2590 w->buffer);
2591 if (XMARKER (w->pointm)->buffer == 0)
2592 set_marker_restricted (w->pointm,
2593 (make_number
2594 (BUF_PT (XBUFFER (w->buffer)))),
2595 w->buffer);
2596 w->start_at_line_beg = Qt;
7ab12479
JB
2597 }
2598 }
2599 }
9ace597f 2600
fd482be5
JB
2601 FRAME_ROOT_WINDOW (f) = data->root_window;
2602 Fselect_window (data->current_window);
7ab12479 2603
fd482be5 2604#ifdef MULTI_FRAME
db269683
JB
2605 if (NILP (data->focus_frame)
2606 || (XTYPE (data->focus_frame) == Lisp_Frame
2607 && FRAME_LIVE_P (XFRAME (data->focus_frame))))
2608 Fredirect_frame_focus (frame, data->focus_frame);
fd482be5 2609#endif
7ab12479 2610
fd482be5
JB
2611#if 0 /* I don't understand why this is needed, and it causes problems
2612 when the frame's old selected window has been deleted. */
2613#ifdef MULTI_FRAME
2614 if (f != selected_frame && ! FRAME_TERMCAP_P (f))
d5b2799e 2615 Fhandle_switch_frame (WINDOW_FRAME (XWINDOW (data->root_window)), Qnil);
fd482be5
JB
2616#endif
2617#endif
2618
2619 /* Set the screen height to the value it had before this function. */
2620 if (previous_frame_height != FRAME_HEIGHT (f)
2621 || previous_frame_width != FRAME_WIDTH (f))
2622 change_frame_size (f, previous_frame_height, previous_frame_width,
2623 0, 0);
2624 }
bdc727bf 2625
ad854249 2626#ifdef MULTI_FRAME
bdc727bf 2627 /* Fselect_window will have made f the selected frame, so we
d5b2799e 2628 reselect the proper frame here. Fhandle_switch_frame will change the
bdc727bf
JB
2629 selected window too, but that doesn't make the call to
2630 Fselect_window above totally superfluous; it still sets f's
2631 selected window. */
fd482be5 2632 if (FRAME_LIVE_P (XFRAME (data->selected_frame)))
d5b2799e 2633 Fhandle_switch_frame (data->selected_frame, Qnil);
ad854249 2634#endif
bdc727bf
JB
2635
2636 if (!NILP (new_current_buffer))
2637 Fset_buffer (new_current_buffer);
2638
7ab12479
JB
2639 Vminibuf_scroll_window = data->minibuf_scroll_window;
2640 return (Qnil);
2641}
2642
44fa5b1e 2643/* Mark all windows now on frame as deleted
7ab12479
JB
2644 by setting their buffers to nil. */
2645
fd482be5 2646void
7ab12479
JB
2647delete_all_subwindows (w)
2648 register struct window *w;
2649{
265a9e55 2650 if (!NILP (w->next))
7ab12479 2651 delete_all_subwindows (XWINDOW (w->next));
265a9e55 2652 if (!NILP (w->vchild))
7ab12479 2653 delete_all_subwindows (XWINDOW (w->vchild));
265a9e55 2654 if (!NILP (w->hchild))
7ab12479 2655 delete_all_subwindows (XWINDOW (w->hchild));
605be8af
JB
2656
2657 w->height = w->buffer; /* See Fset_window_configuration for excuse. */
2658
2659 /* We set all three of these fields to nil, to make sure that we can
2660 distinguish this dead window from any live window. Live leaf
2661 windows will have buffer set, and combination windows will have
2662 vchild or hchild set. */
2663 w->buffer = Qnil;
2664 w->vchild = Qnil;
2665 w->hchild = Qnil;
7ab12479
JB
2666}
2667\f
2668static int
2669count_windows (window)
2670 register struct window *window;
2671{
2672 register int count = 1;
265a9e55 2673 if (!NILP (window->next))
7ab12479 2674 count += count_windows (XWINDOW (window->next));
265a9e55 2675 if (!NILP (window->vchild))
7ab12479 2676 count += count_windows (XWINDOW (window->vchild));
265a9e55 2677 if (!NILP (window->hchild))
7ab12479
JB
2678 count += count_windows (XWINDOW (window->hchild));
2679 return count;
2680}
2681
2682static int
2683save_window_save (window, vector, i)
2684 Lisp_Object window;
2685 struct Lisp_Vector *vector;
2686 int i;
2687{
2688 register struct saved_window *p;
2689 register struct window *w;
2690 register Lisp_Object tem;
2691
265a9e55 2692 for (;!NILP (window); window = w->next)
7ab12479
JB
2693 {
2694 p = SAVED_WINDOW_N (vector, i);
2695 w = XWINDOW (window);
2696
2697 XFASTINT (w->temslot) = i++;
2698 p->window = window;
2699 p->buffer = w->buffer;
2700 p->left = w->left;
2701 p->top = w->top;
2702 p->width = w->width;
2703 p->height = w->height;
2704 p->hscroll = w->hscroll;
2705 p->display_table = w->display_table;
265a9e55 2706 if (!NILP (w->buffer))
7ab12479
JB
2707 {
2708 /* Save w's value of point in the window configuration.
2709 If w is the selected window, then get the value of point
2710 from the buffer; pointm is garbage in the selected window. */
2711 if (EQ (window, selected_window))
2712 {
2713 p->pointm = Fmake_marker ();
2714 Fset_marker (p->pointm, BUF_PT (XBUFFER (w->buffer)),
2715 w->buffer);
2716 }
2717 else
2718 p->pointm = Fcopy_marker (w->pointm);
2719
2720 p->start = Fcopy_marker (w->start);
2721 p->start_at_line_beg = w->start_at_line_beg;
2722
2723 tem = XBUFFER (w->buffer)->mark;
2724 p->mark = Fcopy_marker (tem);
2725 }
2726 else
2727 {
2728 p->pointm = Qnil;
2729 p->start = Qnil;
2730 p->mark = Qnil;
2731 p->start_at_line_beg = Qnil;
2732 }
2733
265a9e55 2734 if (NILP (w->parent))
7ab12479
JB
2735 p->parent = Qnil;
2736 else
2737 p->parent = XWINDOW (w->parent)->temslot;
2738
265a9e55 2739 if (NILP (w->prev))
7ab12479
JB
2740 p->prev = Qnil;
2741 else
2742 p->prev = XWINDOW (w->prev)->temslot;
2743
265a9e55 2744 if (!NILP (w->vchild))
7ab12479 2745 i = save_window_save (w->vchild, vector, i);
265a9e55 2746 if (!NILP (w->hchild))
7ab12479
JB
2747 i = save_window_save (w->hchild, vector, i);
2748 }
2749
2750 return i;
2751}
2752
2753DEFUN ("current-window-configuration",
43bad991 2754 Fcurrent_window_configuration, Scurrent_window_configuration, 0, 1, 0,
44fa5b1e
JB
2755 "Return an object representing the current window configuration of FRAME.\n\
2756If FRAME is nil or omitted, use the selected frame.\n\
7ab12479
JB
2757This describes the number of windows, their sizes and current buffers,\n\
2758and for each displayed buffer, where display starts, and the positions of\n\
2759point and mark. An exception is made for point in the current buffer:\n\
bdc727bf
JB
2760its value is -not- saved.\n\
2761This also records the currently selected frame, and FRAME's focus\n\
2762redirection (see `redirect-frame-focus').")
44fa5b1e
JB
2763 (frame)
2764 Lisp_Object frame;
7ab12479
JB
2765{
2766 register Lisp_Object tem;
2767 register int n_windows;
2768 register struct save_window_data *data;
2769 register int i;
44fa5b1e 2770 FRAME_PTR f;
43bad991 2771
44fa5b1e
JB
2772 if (NILP (frame))
2773 f = selected_frame;
43bad991
JB
2774 else
2775 {
44fa5b1e
JB
2776 CHECK_LIVE_FRAME (frame, 0);
2777 f = XFRAME (frame);
43bad991 2778 }
7ab12479 2779
44fa5b1e 2780 n_windows = count_windows (XWINDOW (FRAME_ROOT_WINDOW (f)));
7ab12479
JB
2781 data = (struct save_window_data *)
2782 XVECTOR (Fmake_vector (make_number (SAVE_WINDOW_DATA_SIZE),
2783 Qnil));
44fa5b1e
JB
2784 XFASTINT (data->frame_width) = FRAME_WIDTH (f);
2785 XFASTINT (data->frame_height) = FRAME_HEIGHT (f);
ad854249 2786#ifdef MULTI_FRAME
bdc727bf 2787 XSET (data->selected_frame, Lisp_Frame, selected_frame);
ad854249 2788#endif
44fa5b1e 2789 data->current_window = FRAME_SELECTED_WINDOW (f);
7ab12479
JB
2790 XSET (data->current_buffer, Lisp_Buffer, current_buffer);
2791 data->minibuf_scroll_window = Vminibuf_scroll_window;
44fa5b1e 2792 data->root_window = FRAME_ROOT_WINDOW (f);
bdc727bf 2793 data->focus_frame = FRAME_FOCUS_FRAME (f);
7ab12479
JB
2794 tem = Fmake_vector (make_number (n_windows), Qnil);
2795 data->saved_windows = tem;
2796 for (i = 0; i < n_windows; i++)
2797 XVECTOR (tem)->contents[i]
2798 = Fmake_vector (make_number (SAVED_WINDOW_VECTOR_SIZE), Qnil);
44fa5b1e 2799 save_window_save (FRAME_ROOT_WINDOW (f),
7ab12479
JB
2800 XVECTOR (tem), 0);
2801 XSET (tem, Lisp_Window_Configuration, data);
2802 return (tem);
2803}
2804
2805DEFUN ("save-window-excursion", Fsave_window_excursion, Ssave_window_excursion,
2806 0, UNEVALLED, 0,
2807 "Execute body, preserving window sizes and contents.\n\
2808Restores which buffer appears in which window, where display starts,\n\
2809as well as the current buffer.\n\
2810Does not restore the value of point in current buffer.")
2811 (args)
2812 Lisp_Object args;
2813{
2814 register Lisp_Object val;
2815 register int count = specpdl_ptr - specpdl;
2816
2817 record_unwind_protect (Fset_window_configuration,
43bad991 2818 Fcurrent_window_configuration (Qnil));
7ab12479
JB
2819 val = Fprogn (args);
2820 return unbind_to (count, val);
2821}
2822\f
2823init_window_once ()
2824{
44fa5b1e
JB
2825#ifdef MULTI_FRAME
2826 selected_frame = make_terminal_frame ();
2827 minibuf_window = selected_frame->minibuffer_window;
2828 selected_window = selected_frame->selected_window;
2829 last_nonminibuf_frame = selected_frame;
2830#else /* not MULTI_FRAME */
7ab12479
JB
2831 extern Lisp_Object get_minibuffer ();
2832
95605e15 2833 minibuf_window = make_window ();
4b206065 2834 FRAME_ROOT_WINDOW (selected_frame) = make_window ();
7ab12479 2835
44fa5b1e
JB
2836 XWINDOW (FRAME_ROOT_WINDOW (selected_frame))->next = minibuf_window;
2837 XWINDOW (minibuf_window)->prev = FRAME_ROOT_WINDOW (selected_frame);
4b206065 2838 XWINDOW (minibuf_window)->mini_p = Qt;
7ab12479
JB
2839
2840 /* These values 9 and 10 are arbitrary,
2841 just so that there is "something there."
2842 Correct values are put in in init_xdisp */
2843
44fa5b1e 2844 XFASTINT (XWINDOW (FRAME_ROOT_WINDOW (selected_frame))->width) = 10;
7ab12479
JB
2845 XFASTINT (XWINDOW (minibuf_window)->width) = 10;
2846
44fa5b1e 2847 XFASTINT (XWINDOW (FRAME_ROOT_WINDOW (selected_frame))->height) = 9;
7ab12479
JB
2848 XFASTINT (XWINDOW (minibuf_window)->top) = 9;
2849 XFASTINT (XWINDOW (minibuf_window)->height) = 1;
2850
2851 /* Prevent error in Fset_window_buffer. */
44fa5b1e 2852 XWINDOW (FRAME_ROOT_WINDOW (selected_frame))->buffer = Qt;
7ab12479
JB
2853 XWINDOW (minibuf_window)->buffer = Qt;
2854
2855 /* Now set them up for real. */
44fa5b1e 2856 Fset_window_buffer (FRAME_ROOT_WINDOW (selected_frame),
e5d77022 2857 Fcurrent_buffer ());
7ab12479
JB
2858 Fset_window_buffer (minibuf_window, get_minibuffer (0));
2859
44fa5b1e 2860 selected_window = FRAME_ROOT_WINDOW (selected_frame);
1d8d96fa
JB
2861 /* Make sure this window seems more recently used than
2862 a newly-created, never-selected window. Increment
2863 window_select_count so the first selection ever will get
2864 something newer than this. */
2865 XFASTINT (XWINDOW (selected_window)->use_time) = ++window_select_count;
44fa5b1e 2866#endif /* not MULTI_FRAME */
7ab12479
JB
2867}
2868
2869syms_of_window ()
2870{
2871 Qwindowp = intern ("windowp");
2872 staticpro (&Qwindowp);
2873
806b4d9b
JB
2874 Qwindow_live_p = intern ("window-live-p");
2875 staticpro (&Qwindow_live_p);
605be8af 2876
2f83aebe 2877#ifndef MULTI_FRAME
7ab12479
JB
2878 /* Make sure all windows get marked */
2879 staticpro (&minibuf_window);
2f83aebe 2880#endif
7ab12479
JB
2881
2882 DEFVAR_LISP ("temp-buffer-show-function", &Vtemp_buffer_show_function,
2883 "Non-nil means call as function to display a help buffer.\n\
2884Used by `with-output-to-temp-buffer'.");
2885 Vtemp_buffer_show_function = Qnil;
2886
2887 DEFVAR_LISP ("display-buffer-function", &Vdisplay_buffer_function,
2888 "If non-nil, function to call to handle `display-buffer'.\n\
2889It will receive two args, the buffer and a flag which if non-nil means\n\
2890 that the currently selected window is not acceptable.\n\
2891Commands such as `switch-to-buffer-other-window' and `find-file-other-window'\n\
2892work using this function.");
2893 Vdisplay_buffer_function = Qnil;
2894
7ab12479
JB
2895 DEFVAR_LISP ("minibuffer-scroll-window", &Vminibuf_scroll_window,
2896 "Non-nil means it is the window that C-M-v in minibuffer should scroll.");
2897 Vminibuf_scroll_window = Qnil;
2898
2899 DEFVAR_LISP ("other-window-scroll-buffer", &Vother_window_scroll_buffer,
2900 "If non-nil, this is a buffer and \\[scroll-other-window] should scroll its window.");
2901 Vother_window_scroll_buffer = Qnil;
2902
44fa5b1e
JB
2903#ifdef MULTI_FRAME
2904 DEFVAR_BOOL ("pop-up-frames", &pop_up_frames,
700f75a4 2905 "*Non-nil means `display-buffer' should make a separate frame.");
44fa5b1e 2906 pop_up_frames = 0;
7ab12479 2907
44fa5b1e
JB
2908 DEFVAR_LISP ("pop-up-frame-function", &Vpop_up_frame_function,
2909 "*If non-nil, function to call to handle automatic new frame creation.\n\
2910It is called with no arguments and should return a newly created frame.\n\
7ab12479 2911\n\
44fa5b1e
JB
2912A typical value might be `(lambda () (new-frame pop-up-frame-alist))'\n\
2913where `pop-up-frame-alist' would hold the default frame parameters.");
2914 Vpop_up_frame_function = Qnil;
7ab12479
JB
2915#endif
2916
2917 DEFVAR_BOOL ("pop-up-windows", &pop_up_windows,
2918 "*Non-nil means display-buffer should make new windows.");
2919 pop_up_windows = 1;
2920
2921 DEFVAR_INT ("next-screen-context-lines", &next_screen_context_lines,
2922 "*Number of lines of continuity when scrolling by screenfuls.");
2923 next_screen_context_lines = 2;
2924
2925 DEFVAR_INT ("split-height-threshold", &split_height_threshold,
2926 "*display-buffer would prefer to split the largest window if this large.\n\
2927If there is only one window, it is split regardless of this value.");
2928 split_height_threshold = 500;
2929
2930 DEFVAR_INT ("window-min-height", &window_min_height,
2931 "*Delete any window less than this tall (including its mode line).");
2932 window_min_height = 4;
2933
2934 DEFVAR_INT ("window-min-width", &window_min_width,
2935 "*Delete any window less than this wide.");
2936 window_min_width = 10;
2937
2938 defsubr (&Sselected_window);
2939 defsubr (&Sminibuffer_window);
2940 defsubr (&Swindow_minibuffer_p);
2941 defsubr (&Swindowp);
806b4d9b 2942 defsubr (&Swindow_live_p);
7ab12479
JB
2943 defsubr (&Spos_visible_in_window_p);
2944 defsubr (&Swindow_buffer);
2945 defsubr (&Swindow_height);
2946 defsubr (&Swindow_width);
2947 defsubr (&Swindow_hscroll);
2948 defsubr (&Sset_window_hscroll);
2949 defsubr (&Swindow_edges);
d5783c40
JB
2950 defsubr (&Scoordinates_in_window_p);
2951 defsubr (&Swindow_at);
7ab12479
JB
2952 defsubr (&Swindow_point);
2953 defsubr (&Swindow_start);
2954 defsubr (&Swindow_end);
2955 defsubr (&Sset_window_point);
2956 defsubr (&Sset_window_start);
2957 defsubr (&Swindow_dedicated_p);
d207b766 2958 defsubr (&Sset_window_dedicated_p);
7ab12479
JB
2959 defsubr (&Swindow_display_table);
2960 defsubr (&Sset_window_display_table);
2961 defsubr (&Snext_window);
2962 defsubr (&Sprevious_window);
2963 defsubr (&Sother_window);
2964 defsubr (&Sget_lru_window);
2965 defsubr (&Sget_largest_window);
2966 defsubr (&Sget_buffer_window);
2967 defsubr (&Sdelete_other_windows);
2968 defsubr (&Sdelete_windows_on);
2969 defsubr (&Sreplace_buffer_in_windows);
2970 defsubr (&Sdelete_window);
2971 defsubr (&Sset_window_buffer);
2972 defsubr (&Sselect_window);
2973 defsubr (&Sdisplay_buffer);
2974 defsubr (&Ssplit_window);
2975 defsubr (&Senlarge_window);
2976 defsubr (&Sshrink_window);
2977 defsubr (&Sscroll_up);
2978 defsubr (&Sscroll_down);
2979 defsubr (&Sscroll_left);
2980 defsubr (&Sscroll_right);
2981 defsubr (&Sscroll_other_window);
2982 defsubr (&Srecenter);
2983 defsubr (&Smove_to_window_line);
2984 defsubr (&Swindow_configuration_p);
2985 defsubr (&Sset_window_configuration);
2986 defsubr (&Scurrent_window_configuration);
2987 defsubr (&Ssave_window_excursion);
2988}
2989
2990keys_of_window ()
2991{
2992 initial_define_key (control_x_map, '1', "delete-other-windows");
2993 initial_define_key (control_x_map, '2', "split-window");
2994 initial_define_key (control_x_map, '0', "delete-window");
2995 initial_define_key (control_x_map, 'o', "other-window");
2996 initial_define_key (control_x_map, '^', "enlarge-window");
2997 initial_define_key (control_x_map, '<', "scroll-left");
2998 initial_define_key (control_x_map, '>', "scroll-right");
2999
3000 initial_define_key (global_map, Ctl ('V'), "scroll-up");
3001 initial_define_key (meta_map, Ctl ('V'), "scroll-other-window");
3002 initial_define_key (meta_map, 'v', "scroll-down");
3003
3004 initial_define_key (global_map, Ctl('L'), "recenter");
3005 initial_define_key (meta_map, 'r', "move-to-window-line");
3006}