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