Define HAVE_SHUTDOWN.
[bpt/emacs.git] / src / window.c
CommitLineData
7ab12479
JB
1/* Window creation, deletion and examination for GNU Emacs.
2 Does not include redisplay.
37962e60 3 Copyright (C) 1985, 86, 87, 93, 94, 95, 96 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
3b7ad313
EN
19the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
7ab12479 21
18160b98 22#include <config.h>
7ab12479
JB
23#include "lisp.h"
24#include "buffer.h"
44fa5b1e 25#include "frame.h"
7ab12479
JB
26#include "window.h"
27#include "commands.h"
28#include "indent.h"
29#include "termchar.h"
30#include "disptab.h"
f8026fd8 31#include "keyboard.h"
d2b35234 32#include "blockinput.h"
7ab12479 33
806b4d9b 34Lisp_Object Qwindowp, Qwindow_live_p;
7ab12479
JB
35
36Lisp_Object Fnext_window (), Fdelete_window (), Fselect_window ();
37Lisp_Object Fset_window_buffer (), Fsplit_window (), Frecenter ();
38
fd482be5 39void delete_all_subwindows ();
7ab12479
JB
40static struct window *decode_window();
41
42/* This is the window in which the terminal's cursor should
43 be left when nothing is being done with it. This must
44 always be a leaf window, and its buffer is selected by
45 the top level editing loop at the end of each command.
46
47 This value is always the same as
44fa5b1e 48 FRAME_SELECTED_WINDOW (selected_frame). */
7ab12479
JB
49
50Lisp_Object selected_window;
51
44fa5b1e 52/* The minibuffer window of the selected frame.
7ab12479
JB
53 Note that you cannot test for minibufferness of an arbitrary window
54 by comparing against this; but you can test for minibufferness of
55 the selected window. */
56Lisp_Object minibuf_window;
57
58/* Non-nil means it is the window for C-M-v to scroll
59 when the minibuffer is selected. */
60Lisp_Object Vminibuf_scroll_window;
61
62/* Non-nil means this is the buffer whose window C-M-v should scroll. */
63Lisp_Object Vother_window_scroll_buffer;
64
7ab12479
JB
65/* Non-nil means it's function to call to display temp buffers. */
66Lisp_Object Vtemp_buffer_show_function;
67
68/* If a window gets smaller than either of these, it is removed. */
69int window_min_height;
70int window_min_width;
71
72/* Nonzero implies Fdisplay_buffer should create windows. */
73int pop_up_windows;
74
44fa5b1e
JB
75/* Nonzero implies make new frames for Fdisplay_buffer. */
76int pop_up_frames;
7ab12479
JB
77
78/* Non-nil means use this function instead of default */
44fa5b1e 79Lisp_Object Vpop_up_frame_function;
7ab12479
JB
80
81/* Function to call to handle Fdisplay_buffer. */
82Lisp_Object Vdisplay_buffer_function;
83
a90712c2
RS
84/* List of buffer *names* for buffers that should have their own frames. */
85Lisp_Object Vspecial_display_buffer_names;
86
87/* List of regexps for buffer names that should have their own frames. */
88Lisp_Object Vspecial_display_regexps;
89
90/* Function to pop up a special frame. */
91Lisp_Object Vspecial_display_function;
92
855d8627
RS
93/* List of buffer *names* for buffers to appear in selected window. */
94Lisp_Object Vsame_window_buffer_names;
95
96/* List of regexps for buffer names to appear in selected window. */
97Lisp_Object Vsame_window_regexps;
98
a58ec57d
RS
99/* Hook run at end of temp_output_buffer_show. */
100Lisp_Object Qtemp_buffer_show_hook;
101
37962e60 102/* Fdisplay_buffer always splits the largest window
7ab12479
JB
103 if that window is more than this high. */
104int split_height_threshold;
105
106/* Number of lines of continuity in scrolling by screenfuls. */
107int next_screen_context_lines;
108
109/* Incremented for each window created. */
110static int sequence_number;
111
5b03d3c0
RS
112/* Nonzero after init_window_once has finished. */
113static int window_initialized;
114
543f5fb1
RS
115/* Hook to run when window config changes. */
116Lisp_Object Qwindow_configuration_change_hook;
117Lisp_Object Vwindow_configuration_change_hook;
118
9317a85d
RS
119/* Nonzero means scroll commands try to put point
120 at the same screen height as previously. */
121static int scroll_preserve_screen_position;
122
91a78190 123/* Nonzero means we can split a frame even if it is "unsplittable". */
eddd51c2 124static int inhibit_frame_unsplittable;
7d601aaa 125
7ab12479 126#define min(a, b) ((a) < (b) ? (a) : (b))
dba06815 127
9317a85d
RS
128extern int scroll_margin;
129
dba06815 130extern Lisp_Object Qwindow_scroll_functions, Vwindow_scroll_functions;
7ab12479
JB
131\f
132DEFUN ("windowp", Fwindowp, Swindowp, 1, 1, 0,
413430c5
EN
133 "Returns t if OBJECT is a window.")
134 (object)
135 Lisp_Object object;
7ab12479 136{
413430c5 137 return WINDOWP (object) ? Qt : Qnil;
7ab12479
JB
138}
139
806b4d9b 140DEFUN ("window-live-p", Fwindow_live_p, Swindow_live_p, 1, 1, 0,
413430c5
EN
141 "Returns t if OBJECT is a window which is currently visible.")
142 (object)
143 Lisp_Object object;
605be8af 144{
413430c5 145 return (WINDOWP (object) && ! NILP (XWINDOW (object)->buffer) ? Qt : Qnil);
605be8af
JB
146}
147
7ab12479
JB
148Lisp_Object
149make_window ()
150{
cffec418 151 Lisp_Object val;
7ab12479 152 register struct window *p;
cffec418
KH
153 register struct Lisp_Vector *vec;
154 int i;
155
156 vec = allocate_vectorlike ((EMACS_INT) VECSIZE (struct window));
157 for (i = 0; i < VECSIZE (struct window); i++)
158 vec->contents[i] = Qnil;
159 vec->size = VECSIZE (struct window);
160 p = (struct window *)vec;
d834a2e9
KH
161 XSETFASTINT (p->sequence_number, ++sequence_number);
162 XSETFASTINT (p->left, 0);
163 XSETFASTINT (p->top, 0);
164 XSETFASTINT (p->height, 0);
165 XSETFASTINT (p->width, 0);
166 XSETFASTINT (p->hscroll, 0);
167 XSETFASTINT (p->last_point_x, 0);
168 XSETFASTINT (p->last_point_y, 0);
7ab12479
JB
169 p->start = Fmake_marker ();
170 p->pointm = Fmake_marker ();
d834a2e9 171 XSETFASTINT (p->use_time, 0);
44fa5b1e 172 p->frame = Qnil;
7ab12479
JB
173 p->display_table = Qnil;
174 p->dedicated = Qnil;
cffec418 175 XSETWINDOW (val, p);
7ab12479
JB
176 return val;
177}
178
179DEFUN ("selected-window", Fselected_window, Sselected_window, 0, 0, 0,
180 "Return the window that the cursor now appears in and commands apply to.")
181 ()
182{
183 return selected_window;
184}
185
83762ba4
JB
186DEFUN ("minibuffer-window", Fminibuffer_window, Sminibuffer_window, 0, 1, 0,
187 "Return the window used now for minibuffers.\n\
188If the optional argument FRAME is specified, return the minibuffer window\n\
189used by that frame.")
190 (frame)
191 Lisp_Object frame;
7ab12479 192{
83762ba4 193 if (NILP (frame))
74112613 194 XSETFRAME (frame, selected_frame);
83762ba4
JB
195 else
196 CHECK_LIVE_FRAME (frame, 0);
83762ba4
JB
197
198 return FRAME_MINIBUF_WINDOW (XFRAME (frame));
7ab12479
JB
199}
200
605be8af 201DEFUN ("window-minibuffer-p", Fwindow_minibuffer_p, Swindow_minibuffer_p, 0, 1, 0,
7ab12479
JB
202 "Returns non-nil if WINDOW is a minibuffer window.")
203 (window)
204 Lisp_Object window;
205{
206 struct window *w = decode_window (window);
207 return (MINI_WINDOW_P (w) ? Qt : Qnil);
208}
209
210DEFUN ("pos-visible-in-window-p", Fpos_visible_in_window_p,
211 Spos_visible_in_window_p, 0, 2, 0,
44fa5b1e 212 "Return t if position POS is currently on the frame in WINDOW.\n\
7ab12479
JB
213Returns nil if that position is scrolled vertically out of view.\n\
214POS defaults to point; WINDOW, to the selected window.")
215 (pos, window)
216 Lisp_Object pos, window;
217{
218 register struct window *w;
219 register int top;
220 register int height;
221 register int posint;
222 register struct buffer *buf;
223 struct position posval;
afdb2485 224 int hscroll;
7ab12479 225
265a9e55 226 if (NILP (pos))
5ce7b543 227 posint = PT;
7ab12479
JB
228 else
229 {
230 CHECK_NUMBER_COERCE_MARKER (pos, 0);
231 posint = XINT (pos);
232 }
233
605be8af 234 w = decode_window (window);
7ab12479 235 top = marker_position (w->start);
afdb2485 236 hscroll = XINT (w->hscroll);
7ab12479
JB
237
238 if (posint < top)
239 return Qnil;
240
241 height = XFASTINT (w->height) - ! MINI_WINDOW_P (w);
242
243 buf = XBUFFER (w->buffer);
3cd21523
RS
244 if (XFASTINT (w->last_modified) >= BUF_MODIFF (buf)
245 && XFASTINT (w->last_overlay_modified) >= BUF_OVERLAY_MODIFF (buf))
7ab12479 246 {
44fa5b1e 247 /* If frame is up to date,
7ab12479
JB
248 use the info recorded about how much text fit on it. */
249 if (posint < BUF_Z (buf) - XFASTINT (w->window_end_pos)
250 || (XFASTINT (w->window_end_vpos) < height))
251 return Qt;
252 return Qnil;
253 }
254 else
255 {
33eb4ede 256 if (posint > BUF_ZV (buf))
7ab12479
JB
257 return Qnil;
258
61b5322b
RS
259 /* w->start can be out of range. If it is, do something reasonable. */
260 if (top < BUF_BEGV (buf) || top > BUF_ZV (buf))
261 return Qnil;
262
7ab12479 263 /* If that info is not correct, calculate afresh */
5a255667
KH
264 /* BUG FIX for the 7th arg (TOHPOS).
265
266 '0' is harmless, however, ' - (1 << (BITS_PER_SHORT - 1))' is
267 more appropriate here. In case of HSCROLL > 0, this can avoid
268 needless calculation done until (HPOS == 0).
269
270 We want to determine if the position POSINT is in HEIGHT or
271 not. We don't have to do calculation until (HPOS == 0). We
272 can stop it when VPOS goes beyond HEIGHT. */
4efffd80 273 posval = *compute_motion (top, 0, (hscroll ? 1 - hscroll : 0), 0,
5a255667 274 posint, height, - (1 << (BITS_PER_SHORT - 1)),
535e0b8e 275 window_internal_width (w) - 1,
e37f06d7 276 hscroll, 0, w);
7ab12479
JB
277
278 return posval.vpos < height ? Qt : Qnil;
279 }
280}
281\f
282static struct window *
283decode_window (window)
284 register Lisp_Object window;
285{
265a9e55 286 if (NILP (window))
7ab12479
JB
287 return XWINDOW (selected_window);
288
605be8af 289 CHECK_LIVE_WINDOW (window, 0);
7ab12479
JB
290 return XWINDOW (window);
291}
292
293DEFUN ("window-buffer", Fwindow_buffer, Swindow_buffer, 0, 1, 0,
294 "Return the buffer that WINDOW is displaying.")
295 (window)
296 Lisp_Object window;
297{
298 return decode_window (window)->buffer;
299}
300
301DEFUN ("window-height", Fwindow_height, Swindow_height, 0, 1, 0,
302 "Return the number of lines in WINDOW (including its mode line).")
303 (window)
304 Lisp_Object window;
305{
306 return decode_window (window)->height;
307}
308
309DEFUN ("window-width", Fwindow_width, Swindow_width, 0, 1, 0,
3b5908ef
RS
310 "Return the number of display columns in WINDOW.\n\
311This is the width that is usable columns available for text in WINDOW.\n\
312If you want to find out how many columns WINDOW takes up,\n\
313use (let ((edges (window-edges))) (- (nth 2 edges) (nth 0 edges))).")
7ab12479
JB
314 (window)
315 Lisp_Object window;
316{
ee61d94e 317 return make_number (window_internal_width (decode_window (window)));
7ab12479
JB
318}
319
320DEFUN ("window-hscroll", Fwindow_hscroll, Swindow_hscroll, 0, 1, 0,
321 "Return the number of columns by which WINDOW is scrolled from left margin.")
322 (window)
323 Lisp_Object window;
324{
325 return decode_window (window)->hscroll;
326}
327
328DEFUN ("set-window-hscroll", Fset_window_hscroll, Sset_window_hscroll, 2, 2, 0,
329 "Set number of columns WINDOW is scrolled from left margin to NCOL.\n\
330NCOL should be zero or positive.")
331 (window, ncol)
332 register Lisp_Object window, ncol;
333{
334 register struct window *w;
335
336 CHECK_NUMBER (ncol, 1);
d834a2e9 337 if (XINT (ncol) < 0) XSETFASTINT (ncol, 0);
7ab12479 338 w = decode_window (window);
7f4161e0 339 if (XINT (w->hscroll) != XINT (ncol))
1479ef51 340 XBUFFER (w->buffer)->clip_changed = 1; /* Prevent redisplay shortcuts */
7ab12479
JB
341 w->hscroll = ncol;
342 return ncol;
343}
344
190eb263
RS
345DEFUN ("window-redisplay-end-trigger", Fwindow_redisplay_end_trigger,
346 Swindow_redisplay_end_trigger, 0, 1, 0,
347 "Return WINDOW's redisplay end trigger value.\n\
348See `set-window-redisplay-end-trigger' for more information.")
349 (window)
350 Lisp_Object window;
351{
352 return decode_window (window)->redisplay_end_trigger;
353}
354
355DEFUN ("set-window-redisplay-end-trigger", Fset_window_redisplay_end_trigger,
356 Sset_window_redisplay_end_trigger, 2, 2, 0,
357 "Set WINDOW's redisplay end trigger value to VALUE.\n\
358VALUE should be a buffer position (typically a marker) or nil.\n\
76854cf2
RS
359If it is a buffer position, then if redisplay in WINDOW reaches a position\n\
360beyond VALUE, the functions in `redisplay-end-trigger-functions' are called\n\
361with two arguments: WINDOW, and the end trigger value.\n\
362Afterwards the end-trigger value is reset to nil.")
190eb263
RS
363 (window, value)
364 register Lisp_Object window, value;
365{
366 register struct window *w;
367
368 w = decode_window (window);
369 w->redisplay_end_trigger = value;
370 return value;
371}
372
7ab12479
JB
373DEFUN ("window-edges", Fwindow_edges, Swindow_edges, 0, 1, 0,
374 "Return a list of the edge coordinates of WINDOW.\n\
44fa5b1e 375\(LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at top left corner of frame.\n\
7ab12479
JB
376RIGHT is one more than the rightmost column used by WINDOW,\n\
377and BOTTOM is one more than the bottommost row used by WINDOW\n\
378 and its mode-line.")
379 (window)
380 Lisp_Object window;
381{
382 register struct window *w = decode_window (window);
383
384 return Fcons (w->left, Fcons (w->top,
111e5992 385 Fcons (make_number (WINDOW_RIGHT_EDGE (w)),
7ab12479
JB
386 Fcons (make_number (XFASTINT (w->top)
387 + XFASTINT (w->height)),
388 Qnil))));
389}
390
d5783c40
JB
391/* Test if the character at column *x, row *y is within window *w.
392 If it is not, return 0;
393 if it is in the window's text area,
394 set *x and *y to its location relative to the upper left corner
395 of the window, and
396 return 1;
397 if it is on the window's modeline, return 2;
398 if it is on the border between the window and its right sibling,
399 return 3. */
400static int
401coordinates_in_window (w, x, y)
402 register struct window *w;
403 register int *x, *y;
404{
405 register int left = XINT (w->left);
111e5992
RS
406 register int right_edge = WINDOW_RIGHT_EDGE (w);
407 register int left_margin = WINDOW_LEFT_MARGIN (w);
408 register int right_margin = WINDOW_RIGHT_MARGIN (w);
d5783c40
JB
409 register int window_height = XINT (w->height);
410 register int top = XFASTINT (w->top);
111e5992
RS
411
412 if ( *x < left || *x >= right_edge
d5783c40
JB
413 || *y < top || *y >= top + window_height)
414 return 0;
415
111e5992
RS
416 if (left_margin != left && *x < left_margin && *x >= left)
417 return 3;
418
419 if (right_margin != right_edge && *x >= right_margin && *x < right_edge)
420 return 3;
421
d5783c40
JB
422 /* Is the character is the mode line? */
423 if (*y == top + window_height - 1
05c2896a 424 && ! MINI_WINDOW_P (w))
d5783c40 425 return 2;
37962e60 426
111e5992 427 *x -= WINDOW_LEFT_MARGIN (w);
d5783c40
JB
428 *y -= top;
429 return 1;
430}
431
432DEFUN ("coordinates-in-window-p", Fcoordinates_in_window_p,
433 Scoordinates_in_window_p, 2, 2, 0,
434 "Return non-nil if COORDINATES are in WINDOW.\n\
1113d9db 435COORDINATES is a cons of the form (X . Y), X and Y being distances\n\
44fa5b1e 436measured in characters from the upper-left corner of the frame.\n\
1113d9db 437(0 . 0) denotes the character in the upper left corner of the\n\
44fa5b1e 438frame.\n\
d5783c40
JB
439If COORDINATES are in the text portion of WINDOW,\n\
440 the coordinates relative to the window are returned.\n\
e5d77022 441If they are in the mode line of WINDOW, `mode-line' is returned.\n\
d5783c40 442If they are on the border between WINDOW and its right sibling,\n\
e5d77022 443 `vertical-line' is returned.")
d5783c40
JB
444 (coordinates, window)
445 register Lisp_Object coordinates, window;
446{
447 int x, y;
448
605be8af 449 CHECK_LIVE_WINDOW (window, 0);
d5783c40
JB
450 CHECK_CONS (coordinates, 1);
451 x = XINT (Fcar (coordinates));
452 y = XINT (Fcdr (coordinates));
453
454 switch (coordinates_in_window (XWINDOW (window), &x, &y))
455 {
456 case 0: /* NOT in window at all. */
457 return Qnil;
458
459 case 1: /* In text part of window. */
460 return Fcons (x, y);
461
462 case 2: /* In mode line of window. */
463 return Qmode_line;
37962e60 464
d5783c40 465 case 3: /* On right border of window. */
e5d77022 466 return Qvertical_line;
d5783c40
JB
467
468 default:
469 abort ();
470 }
471}
472
7ab12479 473/* Find the window containing column x, row y, and return it as a
d5783c40
JB
474 Lisp_Object. If x, y is on the window's modeline, set *part
475 to 1; if it is on the separating line between the window and its
476 right sibling, set it to 2; otherwise set it to 0. If there is no
477 window under x, y return nil and leave *part unmodified. */
7ab12479 478Lisp_Object
44fa5b1e
JB
479window_from_coordinates (frame, x, y, part)
480 FRAME_PTR frame;
7ab12479 481 int x, y;
d5783c40 482 int *part;
7ab12479
JB
483{
484 register Lisp_Object tem, first;
485
44fa5b1e 486 tem = first = FRAME_SELECTED_WINDOW (frame);
7ab12479 487
d5783c40 488 do
7ab12479
JB
489 {
490 int found = coordinates_in_window (XWINDOW (tem), &x, &y);
491
492 if (found)
493 {
d5783c40 494 *part = found - 1;
7ab12479
JB
495 return tem;
496 }
497
d5783c40 498 tem = Fnext_window (tem, Qt, Qlambda);
7ab12479 499 }
d5783c40 500 while (! EQ (tem, first));
37962e60 501
d5783c40 502 return Qnil;
7ab12479
JB
503}
504
ab17c3f2 505DEFUN ("window-at", Fwindow_at, Swindow_at, 2, 3, 0,
b0c33a94 506 "Return window containing coordinates X and Y on FRAME.\n\
44fa5b1e
JB
507If omitted, FRAME defaults to the currently selected frame.\n\
508The top left corner of the frame is considered to be row 0,\n\
95605e15 509column 0.")
b0c33a94
RS
510 (x, y, frame)
511 Lisp_Object x, y, frame;
7ab12479
JB
512{
513 int part;
514
44fa5b1e 515 if (NILP (frame))
74112613 516 XSETFRAME (frame, selected_frame);
d5783c40 517 else
44fa5b1e 518 CHECK_LIVE_FRAME (frame, 2);
b0c33a94
RS
519 CHECK_NUMBER (x, 0);
520 CHECK_NUMBER (y, 1);
7ab12479 521
44fa5b1e 522 return window_from_coordinates (XFRAME (frame),
b0c33a94 523 XINT (x), XINT (y),
7ab12479
JB
524 &part);
525}
526
527DEFUN ("window-point", Fwindow_point, Swindow_point, 0, 1, 0,
528 "Return current value of point in WINDOW.\n\
529For a nonselected window, this is the value point would have\n\
530if that window were selected.\n\
531\n\
532Note that, when WINDOW is the selected window and its buffer\n\
533is also currently selected, the value returned is the same as (point).\n\
534It would be more strictly correct to return the `top-level' value\n\
535of point, outside of any save-excursion forms.\n\
536But that is hard to define.")
537 (window)
538 Lisp_Object window;
539{
540 register struct window *w = decode_window (window);
541
542 if (w == XWINDOW (selected_window)
543 && current_buffer == XBUFFER (w->buffer))
544 return Fpoint ();
545 return Fmarker_position (w->pointm);
546}
547
548DEFUN ("window-start", Fwindow_start, Swindow_start, 0, 1, 0,
0fea6c40
RS
549 "Return position at which display currently starts in WINDOW.\n\
550This is updated by redisplay or by calling `set-window-start'.")
7ab12479
JB
551 (window)
552 Lisp_Object window;
553{
554 return Fmarker_position (decode_window (window)->start);
555}
556
8646118f
RS
557/* This is text temporarily removed from the doc string below.
558
7250968e
RS
559This function returns nil if the position is not currently known.\n\
560That happens when redisplay is preempted and doesn't finish.\n\
561If in that case you want to compute where the end of the window would\n\
562have been if redisplay had finished, do this:\n\
563 (save-excursion\n\
564 (goto-char (window-start window))\n\
565 (vertical-motion (1- (window-height window)) window)\n\
8646118f
RS
566 (point))") */
567
568DEFUN ("window-end", Fwindow_end, Swindow_end, 0, 1, 0,
569 "Return position at which display currently ends in WINDOW.\n\
570This is updated by redisplay, when it runs to completion.\n\
571Simply changing the buffer text or setting `window-start'\n\
572does not update this value.")
7ab12479
JB
573 (window)
574 Lisp_Object window;
575{
576 Lisp_Object value;
577 struct window *w = decode_window (window);
5a41ab94
RS
578 Lisp_Object buf;
579
580 buf = w->buffer;
581 CHECK_BUFFER (buf, 0);
582
8646118f 583#if 0 /* This change broke some things. We should make it later. */
7250968e
RS
584 /* If we don't know the end position, return nil.
585 The user can compute it with vertical-motion if he wants to.
586 It would be nicer to do it automatically,
587 but that's so slow that it would probably bother people. */
588 if (NILP (w->window_end_valid))
589 return Qnil;
8646118f 590#endif
7250968e 591
74112613
KH
592 XSETINT (value,
593 BUF_Z (XBUFFER (buf)) - XFASTINT (w->window_end_pos));
7ab12479
JB
594
595 return value;
596}
597
598DEFUN ("set-window-point", Fset_window_point, Sset_window_point, 2, 2, 0,
599 "Make point value in WINDOW be at position POS in WINDOW's buffer.")
600 (window, pos)
601 Lisp_Object window, pos;
602{
603 register struct window *w = decode_window (window);
604
605 CHECK_NUMBER_COERCE_MARKER (pos, 1);
606 if (w == XWINDOW (selected_window))
607 Fgoto_char (pos);
608 else
609 set_marker_restricted (w->pointm, pos, w->buffer);
610
611 return pos;
612}
613
614DEFUN ("set-window-start", Fset_window_start, Sset_window_start, 2, 3, 0,
615 "Make display in WINDOW start at position POS in WINDOW's buffer.\n\
616Optional third arg NOFORCE non-nil inhibits next redisplay\n\
617from overriding motion of point in order to display at this exact start.")
618 (window, pos, noforce)
619 Lisp_Object window, pos, noforce;
620{
621 register struct window *w = decode_window (window);
622
623 CHECK_NUMBER_COERCE_MARKER (pos, 1);
624 set_marker_restricted (w->start, pos, w->buffer);
625 /* this is not right, but much easier than doing what is right. */
626 w->start_at_line_beg = Qnil;
265a9e55 627 if (NILP (noforce))
7ab12479
JB
628 w->force_start = Qt;
629 w->update_mode_line = Qt;
d834a2e9 630 XSETFASTINT (w->last_modified, 0);
3cd21523 631 XSETFASTINT (w->last_overlay_modified, 0);
62c07cc7
JB
632 if (!EQ (window, selected_window))
633 windows_or_buffers_changed++;
7ab12479
JB
634 return pos;
635}
636
637DEFUN ("window-dedicated-p", Fwindow_dedicated_p, Swindow_dedicated_p,
638 1, 1, 0,
639 "Return WINDOW's dedicated object, usually t or nil.\n\
1f18c48f 640See also `set-window-dedicated-p'.")
7ab12479
JB
641 (window)
642 Lisp_Object window;
643{
644 return decode_window (window)->dedicated;
645}
646
d207b766
RS
647DEFUN ("set-window-dedicated-p", Fset_window_dedicated_p,
648 Sset_window_dedicated_p, 2, 2, 0,
649 "Control whether WINDOW is dedicated to the buffer it displays.\n\
650If it is dedicated, Emacs will not automatically change\n\
651which buffer appears in it.\n\
652The second argument is the new value for the dedication flag;\n\
653non-nil means yes.")
7ab12479
JB
654 (window, arg)
655 Lisp_Object window, arg;
656{
657 register struct window *w = decode_window (window);
658
265a9e55 659 if (NILP (arg))
7ab12479
JB
660 w->dedicated = Qnil;
661 else
d207b766 662 w->dedicated = Qt;
7ab12479
JB
663
664 return w->dedicated;
665}
666
667DEFUN ("window-display-table", Fwindow_display_table, Swindow_display_table,
668 0, 1, 0,
669 "Return the display-table that WINDOW is using.")
670 (window)
671 Lisp_Object window;
672{
673 return decode_window (window)->display_table;
674}
675
676/* Get the display table for use currently on window W.
677 This is either W's display table or W's buffer's display table.
678 Ignore the specified tables if they are not valid;
679 if no valid table is specified, return 0. */
680
319315f1 681struct Lisp_Char_Table *
7ab12479
JB
682window_display_table (w)
683 struct window *w;
684{
685 Lisp_Object tem;
686 tem = w->display_table;
319315f1
RS
687 if (DISP_TABLE_P (tem))
688 return XCHAR_TABLE (tem);
7ab12479 689 tem = XBUFFER (w->buffer)->display_table;
319315f1
RS
690 if (DISP_TABLE_P (tem))
691 return XCHAR_TABLE (tem);
7ab12479 692 tem = Vstandard_display_table;
319315f1
RS
693 if (DISP_TABLE_P (tem))
694 return XCHAR_TABLE (tem);
7ab12479
JB
695 return 0;
696}
697
3a2712f9 698DEFUN ("set-window-display-table", Fset_window_display_table, Sset_window_display_table, 2, 2, 0,
7ab12479
JB
699 "Set WINDOW's display-table to TABLE.")
700 (window, table)
701 register Lisp_Object window, table;
702{
703 register struct window *w;
704 register Lisp_Object z; /* Return value. */
705
706 w = decode_window (window);
707 w->display_table = table;
708 return table;
709}
710\f
711/* Record info on buffer window w is displaying
712 when it is about to cease to display that buffer. */
713static
714unshow_buffer (w)
715 register struct window *w;
716{
12cae7c0 717 Lisp_Object buf;
7ab12479 718
12cae7c0 719 buf = w->buffer;
7ab12479
JB
720 if (XBUFFER (buf) != XMARKER (w->pointm)->buffer)
721 abort ();
722
86e48436
RS
723 if (w == XWINDOW (XBUFFER (buf)->last_selected_window))
724 XBUFFER (buf)->last_selected_window = Qnil;
725
573f41ab 726#if 0
7ab12479
JB
727 if (w == XWINDOW (selected_window)
728 || ! EQ (buf, XWINDOW (selected_window)->buffer))
729 /* Do this except when the selected window's buffer
730 is being removed from some other window. */
573f41ab
RS
731#endif
732 /* last_window_start records the start position that this buffer
733 had in the last window to be disconnected from it.
734 Now that this statement is unconditional,
735 it is possible for the buffer to be displayed in the
736 selected window, while last_window_start reflects another
737 window which was recently showing the same buffer.
738 Some people might say that might be a good thing. Let's see. */
7ab12479
JB
739 XBUFFER (buf)->last_window_start = marker_position (w->start);
740
741 /* Point in the selected window's buffer
742 is actually stored in that buffer, and the window's pointm isn't used.
743 So don't clobber point in that buffer. */
744 if (! EQ (buf, XWINDOW (selected_window)->buffer))
745 BUF_PT (XBUFFER (buf))
746 = clip_to_bounds (BUF_BEGV (XBUFFER (buf)),
747 marker_position (w->pointm),
748 BUF_ZV (XBUFFER (buf)));
749}
750
751/* Put replacement into the window structure in place of old. */
752static
753replace_window (old, replacement)
754 Lisp_Object old, replacement;
755{
756 register Lisp_Object tem;
757 register struct window *o = XWINDOW (old), *p = XWINDOW (replacement);
758
44fa5b1e
JB
759 /* If OLD is its frame's root_window, then replacement is the new
760 root_window for that frame. */
7ab12479 761
7f4161e0 762 if (EQ (old, FRAME_ROOT_WINDOW (XFRAME (o->frame))))
44fa5b1e 763 FRAME_ROOT_WINDOW (XFRAME (o->frame)) = replacement;
7ab12479
JB
764
765 p->left = o->left;
766 p->top = o->top;
767 p->width = o->width;
768 p->height = o->height;
769
770 p->next = tem = o->next;
265a9e55 771 if (!NILP (tem))
7ab12479
JB
772 XWINDOW (tem)->prev = replacement;
773
774 p->prev = tem = o->prev;
265a9e55 775 if (!NILP (tem))
7ab12479
JB
776 XWINDOW (tem)->next = replacement;
777
778 p->parent = tem = o->parent;
265a9e55 779 if (!NILP (tem))
7ab12479
JB
780 {
781 if (EQ (XWINDOW (tem)->vchild, old))
782 XWINDOW (tem)->vchild = replacement;
783 if (EQ (XWINDOW (tem)->hchild, old))
784 XWINDOW (tem)->hchild = replacement;
785 }
786
787/*** Here, if replacement is a vertical combination
788and so is its new parent, we should make replacement's
789children be children of that parent instead. ***/
790}
791
792DEFUN ("delete-window", Fdelete_window, Sdelete_window, 0, 1, "",
793 "Remove WINDOW from the display. Default is selected window.")
794 (window)
795 register Lisp_Object window;
543f5fb1
RS
796{
797 delete_window (window);
798
799 if (! NILP (Vwindow_configuration_change_hook)
800 && ! NILP (Vrun_hooks))
801 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
802
803 return Qnil;
804}
805
806delete_window (window)
807 register Lisp_Object window;
7ab12479
JB
808{
809 register Lisp_Object tem, parent, sib;
810 register struct window *p;
811 register struct window *par;
812
605be8af
JB
813 /* Because this function is called by other C code on non-leaf
814 windows, the CHECK_LIVE_WINDOW macro would choke inappropriately,
815 so we can't decode_window here. */
265a9e55 816 if (NILP (window))
7ab12479
JB
817 window = selected_window;
818 else
819 CHECK_WINDOW (window, 0);
7ab12479 820 p = XWINDOW (window);
605be8af
JB
821
822 /* It's okay to delete an already-deleted window. */
823 if (NILP (p->buffer)
824 && NILP (p->hchild)
825 && NILP (p->vchild))
296b535c 826 return;
605be8af 827
7ab12479 828 parent = p->parent;
265a9e55 829 if (NILP (parent))
7ab12479
JB
830 error ("Attempt to delete minibuffer or sole ordinary window");
831 par = XWINDOW (parent);
832
833 windows_or_buffers_changed++;
29aeee73 834 FRAME_WINDOW_SIZES_CHANGED (XFRAME (WINDOW_FRAME (p))) = 1;
7ab12479 835
605be8af
JB
836 /* Are we trying to delete any frame's selected window? */
837 {
0def0403 838 Lisp_Object frame, pwindow;
605be8af 839
0def0403
RS
840 /* See if the frame's selected window is either WINDOW
841 or any subwindow of it, by finding all that window's parents
842 and comparing each one with WINDOW. */
843 frame = WINDOW_FRAME (XWINDOW (window));
844 pwindow = FRAME_SELECTED_WINDOW (XFRAME (frame));
845
846 while (!NILP (pwindow))
847 {
848 if (EQ (window, pwindow))
849 break;
850 pwindow = XWINDOW (pwindow)->parent;
851 }
852
853 if (EQ (window, pwindow))
605be8af 854 {
89bca612
RS
855 Lisp_Object alternative;
856 alternative = Fnext_window (window, Qlambda, Qnil);
605be8af
JB
857
858 /* If we're about to delete the selected window on the
859 selected frame, then we should use Fselect_window to select
860 the new window. On the other hand, if we're about to
861 delete the selected window on any other frame, we shouldn't do
862 anything but set the frame's selected_window slot. */
863 if (EQ (window, selected_window))
864 Fselect_window (alternative);
865 else
0def0403 866 FRAME_SELECTED_WINDOW (XFRAME (frame)) = alternative;
605be8af
JB
867 }
868 }
7ab12479
JB
869
870 tem = p->buffer;
871 /* tem is null for dummy parent windows
872 (which have inferiors but not any contents themselves) */
265a9e55 873 if (!NILP (tem))
7ab12479
JB
874 {
875 unshow_buffer (p);
876 unchain_marker (p->pointm);
877 unchain_marker (p->start);
7ab12479
JB
878 }
879
880 tem = p->next;
265a9e55 881 if (!NILP (tem))
7ab12479
JB
882 XWINDOW (tem)->prev = p->prev;
883
884 tem = p->prev;
265a9e55 885 if (!NILP (tem))
7ab12479
JB
886 XWINDOW (tem)->next = p->next;
887
888 if (EQ (window, par->hchild))
889 par->hchild = p->next;
890 if (EQ (window, par->vchild))
891 par->vchild = p->next;
892
893 /* Find one of our siblings to give our space to. */
894 sib = p->prev;
265a9e55 895 if (NILP (sib))
7ab12479
JB
896 {
897 /* If p gives its space to its next sibling, that sibling needs
898 to have its top/left side pulled back to where p's is.
899 set_window_{height,width} will re-position the sibling's
900 children. */
901 sib = p->next;
7f4161e0
JB
902 XWINDOW (sib)->top = p->top;
903 XWINDOW (sib)->left = p->left;
7ab12479
JB
904 }
905
906 /* Stretch that sibling. */
265a9e55 907 if (!NILP (par->vchild))
7ab12479
JB
908 set_window_height (sib,
909 XFASTINT (XWINDOW (sib)->height) + XFASTINT (p->height),
910 1);
265a9e55 911 if (!NILP (par->hchild))
7ab12479
JB
912 set_window_width (sib,
913 XFASTINT (XWINDOW (sib)->width) + XFASTINT (p->width),
914 1);
915
916 /* If parent now has only one child,
917 put the child into the parent's place. */
7ab12479 918 tem = par->hchild;
265a9e55 919 if (NILP (tem))
7ab12479 920 tem = par->vchild;
265a9e55 921 if (NILP (XWINDOW (tem)->next))
7ab12479 922 replace_window (parent, tem);
605be8af
JB
923
924 /* Since we may be deleting combination windows, we must make sure that
925 not only p but all its children have been marked as deleted. */
926 if (! NILP (p->hchild))
927 delete_all_subwindows (XWINDOW (p->hchild));
928 else if (! NILP (p->vchild))
929 delete_all_subwindows (XWINDOW (p->vchild));
930
931 /* Mark this window as deleted. */
932 p->buffer = p->hchild = p->vchild = Qnil;
7ab12479
JB
933}
934\f
7ab12479 935
44fa5b1e 936extern Lisp_Object next_frame (), prev_frame ();
7ab12479 937
26f6279d
JB
938/* This comment supplies the doc string for `next-window',
939 for make-docfile to see. We cannot put this in the real DEFUN
940 due to limits in the Unix cpp.
941
942DEFUN ("next-window", Ffoo, Sfoo, 0, 3, 0,
7ab12479 943 "Return next window after WINDOW in canonical ordering of windows.\n\
d5783c40
JB
944If omitted, WINDOW defaults to the selected window.\n\
945\n\
946Optional second arg MINIBUF t means count the minibuffer window even\n\
947if not active. MINIBUF nil or omitted means count the minibuffer iff\n\
948it is active. MINIBUF neither t nor nil means not to count the\n\
949minibuffer even if it is active.\n\
950\n\
44fa5b1e
JB
951Several frames may share a single minibuffer; if the minibuffer\n\
952counts, all windows on all frames that share that minibuffer count\n\
ed160f1f 953too. Therefore, `next-window' can be used to iterate through the\n\
44fa5b1e
JB
954set of windows even when the minibuffer is on another frame. If the\n\
955minibuffer does not count, only windows from WINDOW's frame count.\n\
d5783c40 956\n\
44fa5b1e
JB
957Optional third arg ALL-FRAMES t means include windows on all frames.\n\
958ALL-FRAMES nil or omitted means cycle within the frames as specified\n\
89bca612 959above. ALL-FRAMES = `visible' means include windows on all visible frames.\n\
f812f9c6 960ALL-FRAMES = 0 means include windows on all visible and iconified frames.\n\
1f4c5d09 961If ALL-FRAMES is a frame, restrict search to windows on that frame.\n\
89bca612 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`next-window' to iterate through the entire cycle of acceptable\n\
966windows, eventually ending up back at the window you started with.\n\
967`previous-window' traverses the same cycle, in the reverse order.")
26f6279d
JB
968 (window, minibuf, all_frames) */
969
970DEFUN ("next-window", Fnext_window, Snext_window, 0, 3, 0,
971 0)
44fa5b1e
JB
972 (window, minibuf, all_frames)
973 register Lisp_Object window, minibuf, all_frames;
7ab12479
JB
974{
975 register Lisp_Object tem;
d5783c40 976 Lisp_Object start_window;
7ab12479 977
265a9e55 978 if (NILP (window))
7ab12479
JB
979 window = selected_window;
980 else
605be8af 981 CHECK_LIVE_WINDOW (window, 0);
7ab12479 982
d5783c40
JB
983 start_window = window;
984
985 /* minibuf == nil may or may not include minibuffers.
986 Decide if it does. */
265a9e55 987 if (NILP (minibuf))
fbdc1545
RS
988 minibuf = (minibuf_level ? minibuf_window : Qlambda);
989 else if (! EQ (minibuf, Qt))
990 minibuf = Qlambda;
991 /* Now minibuf can be t => count all minibuffer windows,
992 lambda => count none of them,
993 or a specific minibuffer window (the active one) to count. */
d5783c40 994
1bb80f72 995 /* all_frames == nil doesn't specify which frames to include. */
44fa5b1e 996 if (NILP (all_frames))
fbdc1545 997 all_frames = (! EQ (minibuf, Qlambda)
1bb80f72
RS
998 ? (FRAME_MINIBUF_WINDOW
999 (XFRAME
1000 (WINDOW_FRAME
1001 (XWINDOW (window)))))
1002 : Qnil);
89bca612
RS
1003 else if (EQ (all_frames, Qvisible))
1004 ;
f812f9c6
RS
1005 else if (XFASTINT (all_frames) == 0)
1006 ;
1f4c5d09
RS
1007 else if (FRAMEP (all_frames) && ! EQ (all_frames, Fwindow_frame (window)))
1008 /* If all_frames is a frame and window arg isn't on that frame, just
1009 return the first window on the frame. */
1010 return Fframe_first_window (all_frames);
44fa5b1e
JB
1011 else if (! EQ (all_frames, Qt))
1012 all_frames = Qnil;
644b477c
RS
1013 /* Now all_frames is t meaning search all frames,
1014 nil meaning search just current frame,
f812f9c6
RS
1015 visible meaning search just visible frames,
1016 0 meaning search visible and iconified frames,
644b477c 1017 or a window, meaning search the frame that window belongs to. */
7ab12479
JB
1018
1019 /* Do this loop at least once, to get the next window, and perhaps
1020 again, if we hit the minibuffer and that is not acceptable. */
1021 do
1022 {
1023 /* Find a window that actually has a next one. This loop
1024 climbs up the tree. */
265a9e55
JB
1025 while (tem = XWINDOW (window)->next, NILP (tem))
1026 if (tem = XWINDOW (window)->parent, !NILP (tem))
7ab12479 1027 window = tem;
d5783c40 1028 else
7ab12479 1029 {
44fa5b1e
JB
1030 /* We've reached the end of this frame.
1031 Which other frames are acceptable? */
1032 tem = WINDOW_FRAME (XWINDOW (window));
44fa5b1e 1033 if (! NILP (all_frames))
1bb80f72
RS
1034 {
1035 Lisp_Object tem1;
1036
1037 tem1 = tem;
1038 tem = next_frame (tem, all_frames);
1039 /* In the case where the minibuffer is active,
1040 and we include its frame as well as the selected one,
1041 next_frame may get stuck in that frame.
1042 If that happens, go back to the selected frame
1043 so we can complete the cycle. */
1044 if (EQ (tem, tem1))
74112613 1045 XSETFRAME (tem, selected_frame);
1bb80f72 1046 }
44fa5b1e 1047 tem = FRAME_ROOT_WINDOW (XFRAME (tem));
d5783c40 1048
7ab12479
JB
1049 break;
1050 }
1051
1052 window = tem;
d5783c40 1053
7ab12479
JB
1054 /* If we're in a combination window, find its first child and
1055 recurse on that. Otherwise, we've found the window we want. */
1056 while (1)
1057 {
265a9e55 1058 if (!NILP (XWINDOW (window)->hchild))
7ab12479 1059 window = XWINDOW (window)->hchild;
265a9e55 1060 else if (!NILP (XWINDOW (window)->vchild))
7ab12479
JB
1061 window = XWINDOW (window)->vchild;
1062 else break;
1063 }
1064 }
5c4d25a6 1065 /* Which windows are acceptable?
d5783c40 1066 Exit the loop and accept this window if
fbdc1545
RS
1067 this isn't a minibuffer window,
1068 or we're accepting all minibuffer windows,
1069 or this is the active minibuffer and we are accepting that one, or
d5783c40 1070 we've come all the way around and we're back at the original window. */
7ab12479 1071 while (MINI_WINDOW_P (XWINDOW (window))
d5783c40 1072 && ! EQ (minibuf, Qt)
fbdc1545 1073 && ! EQ (minibuf, window)
7f4161e0 1074 && ! EQ (window, start_window));
7ab12479
JB
1075
1076 return window;
1077}
1078
26f6279d
JB
1079/* This comment supplies the doc string for `previous-window',
1080 for make-docfile to see. We cannot put this in the real DEFUN
1081 due to limits in the Unix cpp.
1082
1083DEFUN ("previous-window", Ffoo, Sfoo, 0, 3, 0,
5c4d25a6 1084 "Return the window preceding WINDOW in canonical ordering of windows.\n\
d5783c40
JB
1085If omitted, WINDOW defaults to the selected window.\n\
1086\n\
1087Optional second arg MINIBUF t means count the minibuffer window even\n\
1088if not active. MINIBUF nil or omitted means count the minibuffer iff\n\
1089it is active. MINIBUF neither t nor nil means not to count the\n\
1090minibuffer even if it is active.\n\
1091\n\
44fa5b1e
JB
1092Several frames may share a single minibuffer; if the minibuffer\n\
1093counts, all windows on all frames that share that minibuffer count\n\
ed160f1f 1094too. Therefore, `previous-window' can be used to iterate through\n\
44fa5b1e 1095the set of windows even when the minibuffer is on another frame. If\n\
ed160f1f 1096the minibuffer does not count, only windows from WINDOW's frame count\n\
d5783c40 1097\n\
44fa5b1e
JB
1098Optional third arg ALL-FRAMES t means include windows on all frames.\n\
1099ALL-FRAMES nil or omitted means cycle within the frames as specified\n\
89bca612 1100above. ALL-FRAMES = `visible' means include windows on all visible frames.\n\
f812f9c6 1101ALL-FRAMES = 0 means include windows on all visible and iconified frames.\n\
1f4c5d09 1102If ALL-FRAMES is a frame, restrict search to windows on that frame.\n\
89bca612 1103Anything else means restrict to WINDOW's frame.\n\
dbc4e1c1
JB
1104\n\
1105If you use consistent values for MINIBUF and ALL-FRAMES, you can use\n\
1106`previous-window' to iterate through the entire cycle of acceptable\n\
1107windows, eventually ending up back at the window you started with.\n\
1108`next-window' traverses the same cycle, in the reverse order.")
26f6279d
JB
1109 (window, minibuf, all_frames) */
1110
1111
1112DEFUN ("previous-window", Fprevious_window, Sprevious_window, 0, 3, 0,
1113 0)
44fa5b1e
JB
1114 (window, minibuf, all_frames)
1115 register Lisp_Object window, minibuf, all_frames;
7ab12479
JB
1116{
1117 register Lisp_Object tem;
d5783c40 1118 Lisp_Object start_window;
7ab12479 1119
265a9e55 1120 if (NILP (window))
7ab12479
JB
1121 window = selected_window;
1122 else
605be8af 1123 CHECK_LIVE_WINDOW (window, 0);
7ab12479 1124
d5783c40
JB
1125 start_window = window;
1126
1127 /* minibuf == nil may or may not include minibuffers.
1128 Decide if it does. */
265a9e55 1129 if (NILP (minibuf))
fbdc1545
RS
1130 minibuf = (minibuf_level ? minibuf_window : Qlambda);
1131 else if (! EQ (minibuf, Qt))
1132 minibuf = Qlambda;
1133 /* Now minibuf can be t => count all minibuffer windows,
1134 lambda => count none of them,
1135 or a specific minibuffer window (the active one) to count. */
d5783c40 1136
44fa5b1e
JB
1137 /* all_frames == nil doesn't specify which frames to include.
1138 Decide which frames it includes. */
1139 if (NILP (all_frames))
fbdc1545 1140 all_frames = (! EQ (minibuf, Qlambda)
44fa5b1e
JB
1141 ? (FRAME_MINIBUF_WINDOW
1142 (XFRAME
1143 (WINDOW_FRAME
d5783c40
JB
1144 (XWINDOW (window)))))
1145 : Qnil);
89bca612
RS
1146 else if (EQ (all_frames, Qvisible))
1147 ;
f812f9c6
RS
1148 else if (XFASTINT (all_frames) == 0)
1149 ;
1f4c5d09
RS
1150 else if (FRAMEP (all_frames) && ! EQ (all_frames, Fwindow_frame (window)))
1151 /* If all_frames is a frame and window arg isn't on that frame, just
1152 return the first window on the frame. */
1153 return Fframe_first_window (all_frames);
44fa5b1e
JB
1154 else if (! EQ (all_frames, Qt))
1155 all_frames = Qnil;
644b477c
RS
1156 /* Now all_frames is t meaning search all frames,
1157 nil meaning search just current frame,
f812f9c6
RS
1158 visible meaning search just visible frames,
1159 0 meaning search visible and iconified frames,
644b477c 1160 or a window, meaning search the frame that window belongs to. */
7ab12479
JB
1161
1162 /* Do this loop at least once, to get the previous window, and perhaps
1163 again, if we hit the minibuffer and that is not acceptable. */
1164 do
1165 {
1166 /* Find a window that actually has a previous one. This loop
1167 climbs up the tree. */
265a9e55
JB
1168 while (tem = XWINDOW (window)->prev, NILP (tem))
1169 if (tem = XWINDOW (window)->parent, !NILP (tem))
7ab12479 1170 window = tem;
d5783c40 1171 else
7ab12479 1172 {
44fa5b1e
JB
1173 /* We have found the top window on the frame.
1174 Which frames are acceptable? */
1175 tem = WINDOW_FRAME (XWINDOW (window));
44fa5b1e 1176 if (! NILP (all_frames))
dbc4e1c1
JB
1177 /* It's actually important that we use prev_frame here,
1178 rather than next_frame. All the windows acceptable
1179 according to the given parameters should form a ring;
1180 Fnext_window and Fprevious_window should go back and
1181 forth around the ring. If we use next_frame here,
1182 then Fnext_window and Fprevious_window take different
1183 paths through the set of acceptable windows.
1184 window_loop assumes that these `ring' requirement are
1185 met. */
1bb80f72
RS
1186 {
1187 Lisp_Object tem1;
1188
1189 tem1 = tem;
1190 tem = prev_frame (tem, all_frames);
1191 /* In the case where the minibuffer is active,
1192 and we include its frame as well as the selected one,
1193 next_frame may get stuck in that frame.
1194 If that happens, go back to the selected frame
1195 so we can complete the cycle. */
1196 if (EQ (tem, tem1))
74112613 1197 XSETFRAME (tem, selected_frame);
1bb80f72 1198 }
644b477c
RS
1199 /* If this frame has a minibuffer, find that window first,
1200 because it is conceptually the last window in that frame. */
5e12e32f
JB
1201 if (FRAME_HAS_MINIBUF_P (XFRAME (tem)))
1202 tem = FRAME_MINIBUF_WINDOW (XFRAME (tem));
1203 else
644b477c 1204 tem = FRAME_ROOT_WINDOW (XFRAME (tem));
d5783c40 1205
7ab12479
JB
1206 break;
1207 }
1208
1209 window = tem;
1210 /* If we're in a combination window, find its last child and
1211 recurse on that. Otherwise, we've found the window we want. */
1212 while (1)
1213 {
265a9e55 1214 if (!NILP (XWINDOW (window)->hchild))
7ab12479 1215 window = XWINDOW (window)->hchild;
265a9e55 1216 else if (!NILP (XWINDOW (window)->vchild))
7ab12479
JB
1217 window = XWINDOW (window)->vchild;
1218 else break;
265a9e55 1219 while (tem = XWINDOW (window)->next, !NILP (tem))
7ab12479
JB
1220 window = tem;
1221 }
1222 }
5c4d25a6 1223 /* Which windows are acceptable?
d5783c40 1224 Exit the loop and accept this window if
fbdc1545
RS
1225 this isn't a minibuffer window,
1226 or we're accepting all minibuffer windows,
1227 or this is the active minibuffer and we are accepting that one, or
d5783c40 1228 we've come all the way around and we're back at the original window. */
7ab12479 1229 while (MINI_WINDOW_P (XWINDOW (window))
fbdc1545
RS
1230 && ! EQ (minibuf, Qt)
1231 && ! EQ (minibuf, window)
1232 && ! EQ (window, start_window));
7ab12479
JB
1233
1234 return window;
1235}
1236
62c07cc7 1237DEFUN ("other-window", Fother_window, Sother_window, 1, 2, "p",
44fa5b1e
JB
1238 "Select the ARG'th different window on this frame.\n\
1239All windows on current frame are arranged in a cyclic order.\n\
7ab12479
JB
1240This command selects the window ARG steps away in that order.\n\
1241A negative ARG moves in the opposite order. If the optional second\n\
44fa5b1e 1242argument ALL_FRAMES is non-nil, cycle through all frames.")
413430c5
EN
1243 (arg, all_frames)
1244 register Lisp_Object arg, all_frames;
7ab12479
JB
1245{
1246 register int i;
1247 register Lisp_Object w;
1248
413430c5 1249 CHECK_NUMBER (arg, 0);
7ab12479 1250 w = selected_window;
413430c5 1251 i = XINT (arg);
7ab12479
JB
1252
1253 while (i > 0)
1254 {
44fa5b1e 1255 w = Fnext_window (w, Qnil, all_frames);
7ab12479
JB
1256 i--;
1257 }
1258 while (i < 0)
1259 {
44fa5b1e 1260 w = Fprevious_window (w, Qnil, all_frames);
7ab12479
JB
1261 i++;
1262 }
1263 Fselect_window (w);
1264 return Qnil;
1265}
1266\f
1267/* Look at all windows, performing an operation specified by TYPE
1268 with argument OBJ.
75d8f668 1269 If FRAMES is Qt, look at all frames;
75d8f668 1270 Qnil, look at just the selected frame;
89bca612 1271 Qvisible, look at visible frames;
75d8f668 1272 a frame, just look at windows on that frame.
7ab12479
JB
1273 If MINI is non-zero, perform the operation on minibuffer windows too.
1274*/
1275
1276enum window_loop
1277{
1278 WINDOW_LOOP_UNUSED,
1279 GET_BUFFER_WINDOW, /* Arg is buffer */
1280 GET_LRU_WINDOW, /* Arg is t for full-width windows only */
1281 DELETE_OTHER_WINDOWS, /* Arg is window not to delete */
1282 DELETE_BUFFER_WINDOWS, /* Arg is buffer */
1283 GET_LARGEST_WINDOW,
a68c0d3b 1284 UNSHOW_BUFFER /* Arg is buffer */
7ab12479
JB
1285};
1286
1287static Lisp_Object
44fa5b1e 1288window_loop (type, obj, mini, frames)
7ab12479 1289 enum window_loop type;
44fa5b1e 1290 register Lisp_Object obj, frames;
7ab12479
JB
1291 int mini;
1292{
1293 register Lisp_Object w;
1294 register Lisp_Object best_window;
1295 register Lisp_Object next_window;
4b206065 1296 register Lisp_Object last_window;
44fa5b1e 1297 FRAME_PTR frame;
89bca612
RS
1298 Lisp_Object frame_arg;
1299 frame_arg = Qt;
44fa5b1e
JB
1300
1301 /* If we're only looping through windows on a particular frame,
1302 frame points to that frame. If we're looping through windows
1303 on all frames, frame is 0. */
1304 if (FRAMEP (frames))
1305 frame = XFRAME (frames);
1306 else if (NILP (frames))
1307 frame = selected_frame;
7ab12479 1308 else
44fa5b1e 1309 frame = 0;
89bca612
RS
1310 if (frame)
1311 frame_arg = Qlambda;
f812f9c6
RS
1312 else if (XFASTINT (frames) == 0)
1313 frame_arg = frames;
89bca612
RS
1314 else if (EQ (frames, Qvisible))
1315 frame_arg = frames;
7ab12479 1316
89bca612
RS
1317 /* frame_arg is Qlambda to stick to one frame,
1318 Qvisible to consider all visible frames,
1319 or Qt otherwise. */
1320
7ab12479 1321 /* Pick a window to start with. */
017b2bad 1322 if (WINDOWP (obj))
4b206065 1323 w = obj;
44fa5b1e 1324 else if (frame)
4b206065 1325 w = FRAME_SELECTED_WINDOW (frame);
7ab12479 1326 else
4b206065
JB
1327 w = FRAME_SELECTED_WINDOW (selected_frame);
1328
1329 /* Figure out the last window we're going to mess with. Since
1330 Fnext_window, given the same options, is guaranteed to go in a
1331 ring, we can just use Fprevious_window to find the last one.
1332
1333 We can't just wait until we hit the first window again, because
1334 it might be deleted. */
1335
89bca612 1336 last_window = Fprevious_window (w, mini ? Qt : Qnil, frame_arg);
7ab12479 1337
7ab12479 1338 best_window = Qnil;
4b206065 1339 for (;;)
7ab12479 1340 {
75d8f668
JB
1341 FRAME_PTR w_frame = XFRAME (WINDOW_FRAME (XWINDOW (w)));
1342
7ab12479
JB
1343 /* Pick the next window now, since some operations will delete
1344 the current window. */
89bca612 1345 next_window = Fnext_window (w, mini ? Qt : Qnil, frame_arg);
7ab12479 1346
d29a5631
RS
1347 /* Note that we do not pay attention here to whether
1348 the frame is visible, since Fnext_window skips non-visible frames
1349 if that is desired, under the control of frame_arg. */
75d8f668 1350 if (! MINI_WINDOW_P (XWINDOW (w))
7ab12479
JB
1351 || (mini && minibuf_level > 0))
1352 switch (type)
1353 {
1354 case GET_BUFFER_WINDOW:
5c204627
RS
1355 if (XBUFFER (XWINDOW (w)->buffer) == XBUFFER (obj)
1356 /* Don't find any minibuffer window
1357 except the one that is currently in use. */
1358 && (MINI_WINDOW_P (XWINDOW (w))
1359 ? EQ (w, minibuf_window) : 1))
7ab12479
JB
1360 return w;
1361 break;
1362
1363 case GET_LRU_WINDOW:
1364 /* t as arg means consider only full-width windows */
111e5992 1365 if (!NILP (obj) && !WINDOW_FULL_WIDTH_P (XWINDOW (w)))
7ab12479 1366 break;
7ab12479
JB
1367 /* Ignore dedicated windows and minibuffers. */
1368 if (MINI_WINDOW_P (XWINDOW (w))
265a9e55 1369 || !NILP (XWINDOW (w)->dedicated))
7ab12479 1370 break;
265a9e55 1371 if (NILP (best_window)
7ab12479
JB
1372 || (XFASTINT (XWINDOW (best_window)->use_time)
1373 > XFASTINT (XWINDOW (w)->use_time)))
1374 best_window = w;
1375 break;
1376
1377 case DELETE_OTHER_WINDOWS:
1378 if (XWINDOW (w) != XWINDOW (obj))
1379 Fdelete_window (w);
1380 break;
1381
1382 case DELETE_BUFFER_WINDOWS:
1383 if (EQ (XWINDOW (w)->buffer, obj))
1384 {
3548e138
RS
1385 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (w)));
1386
1387 /* If this window is dedicated, and in a frame of its own,
1388 kill the frame. */
1389 if (EQ (w, FRAME_ROOT_WINDOW (f))
1390 && !NILP (XWINDOW (w)->dedicated)
1391 && other_visible_frames (f))
7ab12479 1392 {
3548e138
RS
1393 /* Skip the other windows on this frame.
1394 There might be one, the minibuffer! */
1395 if (! EQ (w, last_window))
1396 while (f == XFRAME (WINDOW_FRAME (XWINDOW (next_window))))
1397 {
1398 /* As we go, check for the end of the loop.
1399 We mustn't start going around a second time. */
1400 if (EQ (next_window, last_window))
1401 {
1402 last_window = w;
1403 break;
1404 }
1405 next_window = Fnext_window (next_window,
1406 mini ? Qt : Qnil,
1407 frame_arg);
1408 }
1409 /* Now we can safely delete the frame. */
1410 Fdelete_frame (WINDOW_FRAME (XWINDOW (w)), Qnil);
7ab12479
JB
1411 }
1412 else
3548e138
RS
1413 /* If we're deleting the buffer displayed in the only window
1414 on the frame, find a new buffer to display there. */
1415 if (NILP (XWINDOW (w)->parent))
1416 {
1417 Lisp_Object new_buffer;
1418 new_buffer = Fother_buffer (obj, Qnil);
1419 if (NILP (new_buffer))
1420 new_buffer
1421 = Fget_buffer_create (build_string ("*scratch*"));
1422 Fset_window_buffer (w, new_buffer);
1423 if (EQ (w, selected_window))
1424 Fset_buffer (XWINDOW (w)->buffer);
1425 }
1426 else
1427 Fdelete_window (w);
7ab12479
JB
1428 }
1429 break;
1430
1431 case GET_LARGEST_WINDOW:
7ab12479
JB
1432 /* Ignore dedicated windows and minibuffers. */
1433 if (MINI_WINDOW_P (XWINDOW (w))
265a9e55 1434 || !NILP (XWINDOW (w)->dedicated))
7ab12479
JB
1435 break;
1436 {
1437 struct window *best_window_ptr = XWINDOW (best_window);
1438 struct window *w_ptr = XWINDOW (w);
6b54027b
RS
1439 if (NILP (best_window)
1440 || (XFASTINT (w_ptr->height) * XFASTINT (w_ptr->width)
1441 > (XFASTINT (best_window_ptr->height)
1442 * XFASTINT (best_window_ptr->width))))
7ab12479
JB
1443 best_window = w;
1444 }
1445 break;
1446
1447 case UNSHOW_BUFFER:
1448 if (EQ (XWINDOW (w)->buffer, obj))
1449 {
1450 /* Find another buffer to show in this window. */
12cae7c0 1451 Lisp_Object another_buffer;
38ab08d1 1452 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (w)));
12cae7c0 1453 another_buffer = Fother_buffer (obj, Qnil);
265a9e55 1454 if (NILP (another_buffer))
7ab12479
JB
1455 another_buffer
1456 = Fget_buffer_create (build_string ("*scratch*"));
38ab08d1
RS
1457 /* If this window is dedicated, and in a frame of its own,
1458 kill the frame. */
1459 if (EQ (w, FRAME_ROOT_WINDOW (f))
596122a7 1460 && !NILP (XWINDOW (w)->dedicated)
38ab08d1 1461 && other_visible_frames (f))
45945a7b
RS
1462 {
1463 /* Skip the other windows on this frame.
1464 There might be one, the minibuffer! */
1465 if (! EQ (w, last_window))
1466 while (f == XFRAME (WINDOW_FRAME (XWINDOW (next_window))))
1467 {
1468 /* As we go, check for the end of the loop.
1469 We mustn't start going around a second time. */
1470 if (EQ (next_window, last_window))
1471 {
1472 last_window = w;
1473 break;
1474 }
1475 next_window = Fnext_window (next_window,
1476 mini ? Qt : Qnil,
1477 frame_arg);
1478 }
1479 /* Now we can safely delete the frame. */
1480 Fdelete_frame (WINDOW_FRAME (XWINDOW (w)), Qnil);
1481 }
38ab08d1 1482 else
38ab08d1
RS
1483 {
1484 /* Otherwise show a different buffer in the window. */
1485 XWINDOW (w)->dedicated = Qnil;
1486 Fset_window_buffer (w, another_buffer);
1487 if (EQ (w, selected_window))
1488 Fset_buffer (XWINDOW (w)->buffer);
1489 }
7ab12479
JB
1490 }
1491 break;
1492 }
4b206065
JB
1493
1494 if (EQ (w, last_window))
1495 break;
1496
7ab12479
JB
1497 w = next_window;
1498 }
7ab12479
JB
1499
1500 return best_window;
37962e60 1501}
605be8af 1502
7ab12479
JB
1503DEFUN ("get-lru-window", Fget_lru_window, Sget_lru_window, 0, 1, 0,
1504 "Return the window least recently selected or used for display.\n\
89bca612 1505If optional argument FRAME is `visible', search all visible frames.\n\
cee67da9 1506If FRAME is 0, search all visible and iconified frames.\n\
89bca612
RS
1507If FRAME is t, search all frames.\n\
1508If FRAME is nil, search only the selected frame.\n\
1509If FRAME is a frame, search only that frame.")
1510 (frame)
1511 Lisp_Object frame;
7ab12479
JB
1512{
1513 register Lisp_Object w;
1514 /* First try for a window that is full-width */
89bca612 1515 w = window_loop (GET_LRU_WINDOW, Qt, 0, frame);
265a9e55 1516 if (!NILP (w) && !EQ (w, selected_window))
7ab12479
JB
1517 return w;
1518 /* If none of them, try the rest */
89bca612 1519 return window_loop (GET_LRU_WINDOW, Qnil, 0, frame);
7ab12479
JB
1520}
1521
1522DEFUN ("get-largest-window", Fget_largest_window, Sget_largest_window, 0, 1, 0,
1523 "Return the largest window in area.\n\
89bca612 1524If optional argument FRAME is `visible', search all visible frames.\n\
cee67da9 1525If FRAME is 0, search all visible and iconified frames.\n\
89bca612
RS
1526If FRAME is t, search all frames.\n\
1527If FRAME is nil, search only the selected frame.\n\
1528If FRAME is a frame, search only that frame.")
44fa5b1e
JB
1529 (frame)
1530 Lisp_Object frame;
7ab12479
JB
1531{
1532 return window_loop (GET_LARGEST_WINDOW, Qnil, 0,
44fa5b1e 1533 frame);
7ab12479
JB
1534}
1535
1536DEFUN ("get-buffer-window", Fget_buffer_window, Sget_buffer_window, 1, 2, 0,
1537 "Return a window currently displaying BUFFER, or nil if none.\n\
89bca612 1538If optional argument FRAME is `visible', search all visible frames.\n\
f812f9c6 1539If optional argument FRAME is 0, search all visible and iconified frames.\n\
89bca612 1540If FRAME is t, search all frames.\n\
1bc981d2 1541If FRAME is nil, search only the selected frame.\n\
89bca612 1542If FRAME is a frame, search only that frame.")
44fa5b1e
JB
1543 (buffer, frame)
1544 Lisp_Object buffer, frame;
7ab12479
JB
1545{
1546 buffer = Fget_buffer (buffer);
017b2bad 1547 if (BUFFERP (buffer))
44fa5b1e 1548 return window_loop (GET_BUFFER_WINDOW, buffer, 1, frame);
7ab12479
JB
1549 else
1550 return Qnil;
1551}
1552
1553DEFUN ("delete-other-windows", Fdelete_other_windows, Sdelete_other_windows,
1554 0, 1, "",
44fa5b1e 1555 "Make WINDOW (or the selected window) fill its frame.\n\
f16a1ed3
RS
1556Only the frame WINDOW is on is affected.\n\
1557This function tries to reduce display jumps\n\
1558by keeping the text previously visible in WINDOW\n\
1559in the same place on the frame. Doing this depends on\n\
1560the value of (window-start WINDOW), so if calling this function\n\
1561in a program gives strange scrolling, make sure the window-start\n\
1562value is reasonable when this function is called.")
7ab12479
JB
1563 (window)
1564 Lisp_Object window;
1565{
1566 struct window *w;
00d3d838 1567 int startpos;
7ab12479
JB
1568 int top;
1569
265a9e55 1570 if (NILP (window))
7ab12479
JB
1571 window = selected_window;
1572 else
605be8af 1573 CHECK_LIVE_WINDOW (window, 0);
7ab12479
JB
1574
1575 w = XWINDOW (window);
a2b38b3c 1576
00d3d838
KH
1577 startpos = marker_position (w->start);
1578 top = XFASTINT (w->top) - FRAME_MENU_BAR_LINES (XFRAME (WINDOW_FRAME (w)));
7ab12479 1579
a2b38b3c
RS
1580 if (MINI_WINDOW_P (w) && top > 0)
1581 error ("Can't expand minibuffer to full frame");
1582
70728a80 1583 window_loop (DELETE_OTHER_WINDOWS, window, 0, WINDOW_FRAME (w));
7ab12479 1584
00d3d838
KH
1585 /* Try to minimize scrolling, by setting the window start to the point
1586 will cause the text at the old window start to be at the same place
1587 on the frame. But don't try to do this if the window start is
1588 outside the visible portion (as might happen when the display is
1589 not current, due to typeahead). */
1590 if (startpos >= BUF_BEGV (XBUFFER (w->buffer))
1591 && startpos <= BUF_ZV (XBUFFER (w->buffer)))
1592 {
1593 struct position pos;
1594 struct buffer *obuf = current_buffer;
1595
1596 Fset_buffer (w->buffer);
1597 /* This computation used to temporarily move point, but that can
1598 have unwanted side effects due to text properties. */
0383eb57 1599 pos = *vmotion (startpos, -top, w);
4d047f50 1600
00d3d838
KH
1601 Fset_marker (w->start, make_number (pos.bufpos), w->buffer);
1602 w->start_at_line_beg = ((pos.bufpos == BEGV
5a255667 1603 || FETCH_BYTE (pos.bufpos - 1) == '\n') ? Qt
00d3d838 1604 : Qnil);
80622eec
RS
1605 /* We need to do this, so that the window-scroll-functions
1606 get called. */
4d047f50 1607 w->optional_new_start = Qt;
00d3d838
KH
1608
1609 set_buffer_internal (obuf);
1610 }
7ab12479
JB
1611 return Qnil;
1612}
1613
1614DEFUN ("delete-windows-on", Fdelete_windows_on, Sdelete_windows_on,
3cbbb729 1615 1, 2, "bDelete windows on (buffer): ",
26f6279d
JB
1616 "Delete all windows showing BUFFER.\n\
1617Optional second argument FRAME controls which frames are affected.\n\
1618If nil or omitted, delete all windows showing BUFFER in any frame.\n\
1619If t, delete only windows showing BUFFER in the selected frame.\n\
89bca612 1620If `visible', delete all windows showing BUFFER in any visible frame.\n\
26f6279d
JB
1621If a frame, delete only windows showing BUFFER in that frame.")
1622 (buffer, frame)
1623 Lisp_Object buffer, frame;
7ab12479 1624{
26f6279d
JB
1625 /* FRAME uses t and nil to mean the opposite of what window_loop
1626 expects. */
1627 if (! FRAMEP (frame))
1628 frame = NILP (frame) ? Qt : Qnil;
26f6279d 1629
265a9e55 1630 if (!NILP (buffer))
7ab12479
JB
1631 {
1632 buffer = Fget_buffer (buffer);
1633 CHECK_BUFFER (buffer, 0);
26f6279d 1634 window_loop (DELETE_BUFFER_WINDOWS, buffer, 0, frame);
7ab12479
JB
1635 }
1636 return Qnil;
1637}
1638
1639DEFUN ("replace-buffer-in-windows", Freplace_buffer_in_windows,
1640 Sreplace_buffer_in_windows,
1641 1, 1, "bReplace buffer in windows: ",
1642 "Replace BUFFER with some other buffer in all windows showing it.")
1643 (buffer)
1644 Lisp_Object buffer;
1645{
265a9e55 1646 if (!NILP (buffer))
7ab12479
JB
1647 {
1648 buffer = Fget_buffer (buffer);
1649 CHECK_BUFFER (buffer, 0);
1650 window_loop (UNSHOW_BUFFER, buffer, 0, Qt);
1651 }
1652 return Qnil;
1653}
ff58478b
RS
1654
1655/* Replace BUFFER with some other buffer in all windows
1656 of all frames, even those on other keyboards. */
1657
1658void
1659replace_buffer_in_all_windows (buffer)
1660 Lisp_Object buffer;
1661{
27abb84f 1662#ifdef MULTI_KBOARD
ff58478b
RS
1663 Lisp_Object tail, frame;
1664
ff58478b
RS
1665 /* A single call to window_loop won't do the job
1666 because it only considers frames on the current keyboard.
1667 So loop manually over frames, and handle each one. */
1668 FOR_EACH_FRAME (tail, frame)
27abb84f 1669 window_loop (UNSHOW_BUFFER, buffer, 0, frame);
ff58478b
RS
1670#else
1671 window_loop (UNSHOW_BUFFER, buffer, 0, Qt);
1672#endif
1673}
7ab12479
JB
1674\f
1675/* Set the height of WINDOW and all its inferiors. */
a481b3ea
JB
1676
1677/* The smallest acceptable dimensions for a window. Anything smaller
1678 might crash Emacs. */
1679#define MIN_SAFE_WINDOW_WIDTH (2)
1680#define MIN_SAFE_WINDOW_HEIGHT (2)
1681
1682/* Make sure that window_min_height and window_min_width are
1683 not too small; if they are, set them to safe minima. */
1684
1685static void
1686check_min_window_sizes ()
1687{
1688 /* Smaller values might permit a crash. */
1689 if (window_min_width < MIN_SAFE_WINDOW_WIDTH)
1690 window_min_width = MIN_SAFE_WINDOW_WIDTH;
1691 if (window_min_height < MIN_SAFE_WINDOW_HEIGHT)
1692 window_min_height = MIN_SAFE_WINDOW_HEIGHT;
1693}
1694
1695/* If *ROWS or *COLS are too small a size for FRAME, set them to the
1696 minimum allowable size. */
605be8af 1697void
a481b3ea 1698check_frame_size (frame, rows, cols)
605be8af
JB
1699 FRAME_PTR frame;
1700 int *rows, *cols;
a481b3ea 1701{
628df3bf 1702 /* For height, we have to see:
37962e60 1703 whether the frame has a minibuffer,
628df3bf
JB
1704 whether it wants a mode line, and
1705 whether it has a menu bar. */
a481b3ea 1706 int min_height =
79f92720
JB
1707 (FRAME_MINIBUF_ONLY_P (frame) ? MIN_SAFE_WINDOW_HEIGHT - 1
1708 : (! FRAME_HAS_MINIBUF_P (frame)) ? MIN_SAFE_WINDOW_HEIGHT
a481b3ea 1709 : 2 * MIN_SAFE_WINDOW_HEIGHT - 1);
628df3bf
JB
1710 if (FRAME_MENU_BAR_LINES (frame) > 0)
1711 min_height += FRAME_MENU_BAR_LINES (frame);
a481b3ea
JB
1712
1713 if (*rows < min_height)
1714 *rows = min_height;
1715 if (*cols < MIN_SAFE_WINDOW_WIDTH)
1716 *cols = MIN_SAFE_WINDOW_WIDTH;
1717}
1718
7ab12479
JB
1719/* Normally the window is deleted if it gets too small.
1720 nodelete nonzero means do not do this.
1721 (The caller should check later and do so if appropriate) */
1722
1723set_window_height (window, height, nodelete)
1724 Lisp_Object window;
1725 int height;
1726 int nodelete;
1727{
1728 register struct window *w = XWINDOW (window);
1729 register struct window *c;
1730 int oheight = XFASTINT (w->height);
1731 int top, pos, lastbot, opos, lastobot;
1732 Lisp_Object child;
1733
a481b3ea
JB
1734 check_min_window_sizes ();
1735
7ab12479 1736 if (!nodelete
265a9e55 1737 && ! NILP (w->parent)
7ab12479
JB
1738 && height < window_min_height)
1739 {
543f5fb1 1740 delete_window (window);
7ab12479
JB
1741 return;
1742 }
1743
d834a2e9 1744 XSETFASTINT (w->last_modified, 0);
3cd21523 1745 XSETFASTINT (w->last_overlay_modified, 0);
7ab12479 1746 windows_or_buffers_changed++;
29aeee73
RS
1747 FRAME_WINDOW_SIZES_CHANGED (XFRAME (WINDOW_FRAME (w))) = 1;
1748
d834a2e9 1749 XSETFASTINT (w->height, height);
265a9e55 1750 if (!NILP (w->hchild))
7ab12479 1751 {
265a9e55 1752 for (child = w->hchild; !NILP (child); child = XWINDOW (child)->next)
7ab12479
JB
1753 {
1754 XWINDOW (child)->top = w->top;
1755 set_window_height (child, height, nodelete);
1756 }
1757 }
265a9e55 1758 else if (!NILP (w->vchild))
7ab12479
JB
1759 {
1760 lastbot = top = XFASTINT (w->top);
1761 lastobot = 0;
265a9e55 1762 for (child = w->vchild; !NILP (child); child = c->next)
7ab12479
JB
1763 {
1764 c = XWINDOW (child);
1765
1766 opos = lastobot + XFASTINT (c->height);
1767
d834a2e9 1768 XSETFASTINT (c->top, lastbot);
7ab12479
JB
1769
1770 pos = (((opos * height) << 1) + oheight) / (oheight << 1);
1771
1772 /* Avoid confusion: inhibit deletion of child if becomes too small */
1773 set_window_height (child, pos + top - lastbot, 1);
1774
1775 /* Now advance child to next window,
1776 and set lastbot if child was not just deleted. */
1777 lastbot = pos + top;
1778 lastobot = opos;
1779 }
1780 /* Now delete any children that became too small. */
1781 if (!nodelete)
265a9e55 1782 for (child = w->vchild; !NILP (child); child = XWINDOW (child)->next)
7ab12479
JB
1783 {
1784 set_window_height (child, XINT (XWINDOW (child)->height), 0);
1785 }
1786 }
1787}
1788
1789/* Recursively set width of WINDOW and its inferiors. */
1790
1791set_window_width (window, width, nodelete)
1792 Lisp_Object window;
1793 int width;
1794 int nodelete;
1795{
1796 register struct window *w = XWINDOW (window);
1797 register struct window *c;
1798 int owidth = XFASTINT (w->width);
1799 int left, pos, lastright, opos, lastoright;
1800 Lisp_Object child;
1801
abdced83 1802 if (!nodelete && width < window_min_width && !NILP (w->parent))
7ab12479 1803 {
543f5fb1 1804 delete_window (window);
7ab12479
JB
1805 return;
1806 }
1807
d834a2e9 1808 XSETFASTINT (w->last_modified, 0);
3cd21523 1809 XSETFASTINT (w->last_overlay_modified, 0);
7ab12479 1810 windows_or_buffers_changed++;
29aeee73
RS
1811 FRAME_WINDOW_SIZES_CHANGED (XFRAME (WINDOW_FRAME (w))) = 1;
1812
d834a2e9 1813 XSETFASTINT (w->width, width);
265a9e55 1814 if (!NILP (w->vchild))
7ab12479 1815 {
265a9e55 1816 for (child = w->vchild; !NILP (child); child = XWINDOW (child)->next)
7ab12479
JB
1817 {
1818 XWINDOW (child)->left = w->left;
1819 set_window_width (child, width, nodelete);
1820 }
1821 }
265a9e55 1822 else if (!NILP (w->hchild))
7ab12479
JB
1823 {
1824 lastright = left = XFASTINT (w->left);
1825 lastoright = 0;
265a9e55 1826 for (child = w->hchild; !NILP (child); child = c->next)
7ab12479
JB
1827 {
1828 c = XWINDOW (child);
1829
1830 opos = lastoright + XFASTINT (c->width);
1831
d834a2e9 1832 XSETFASTINT (c->left, lastright);
7ab12479
JB
1833
1834 pos = (((opos * width) << 1) + owidth) / (owidth << 1);
1835
1836 /* Inhibit deletion for becoming too small */
1837 set_window_width (child, pos + left - lastright, 1);
1838
1839 /* Now advance child to next window,
1840 and set lastright if child was not just deleted. */
1841 lastright = pos + left, lastoright = opos;
1842 }
1843 /* Delete children that became too small */
1844 if (!nodelete)
265a9e55 1845 for (child = w->hchild; !NILP (child); child = XWINDOW (child)->next)
7ab12479
JB
1846 {
1847 set_window_width (child, XINT (XWINDOW (child)->width), 0);
1848 }
1849 }
1850}
1851\f
1d8d96fa 1852int window_select_count;
7ab12479 1853
5b03d3c0
RS
1854Lisp_Object
1855Fset_window_buffer_unwind (obuf)
1856 Lisp_Object obuf;
1857{
1858 Fset_buffer (obuf);
1859 return Qnil;
1860}
1861
7ab12479
JB
1862DEFUN ("set-window-buffer", Fset_window_buffer, Sset_window_buffer, 2, 2, 0,
1863 "Make WINDOW display BUFFER as its contents.\n\
1864BUFFER can be a buffer or buffer name.")
1865 (window, buffer)
1866 register Lisp_Object window, buffer;
1867{
1868 register Lisp_Object tem;
1869 register struct window *w = decode_window (window);
5b03d3c0 1870 int count = specpdl_ptr - specpdl;
7ab12479
JB
1871
1872 buffer = Fget_buffer (buffer);
1873 CHECK_BUFFER (buffer, 1);
1874
265a9e55 1875 if (NILP (XBUFFER (buffer)->name))
7ab12479
JB
1876 error ("Attempt to display deleted buffer");
1877
1878 tem = w->buffer;
265a9e55 1879 if (NILP (tem))
7ab12479
JB
1880 error ("Window is deleted");
1881 else if (! EQ (tem, Qt)) /* w->buffer is t when the window
1882 is first being set up. */
1883 {
265a9e55 1884 if (!NILP (w->dedicated) && !EQ (tem, buffer))
3cf85532
RS
1885 error ("Window is dedicated to `%s'",
1886 XSTRING (XBUFFER (tem)->name)->data);
7ab12479
JB
1887
1888 unshow_buffer (w);
1889 }
1890
1891 w->buffer = buffer;
86e48436
RS
1892
1893 if (EQ (window, selected_window))
1894 XBUFFER (w->buffer)->last_selected_window = window;
850ebd4f
RS
1895 if (INTEGERP (XBUFFER (buffer)->display_count))
1896 XSETINT (XBUFFER (buffer)->display_count,
296b535c 1897 XINT (XBUFFER (buffer)->display_count) + 1);
86e48436 1898
d834a2e9 1899 XSETFASTINT (w->window_end_pos, 0);
5a41ab94 1900 w->window_end_valid = Qnil;
dba06815 1901 XSETFASTINT (w->hscroll, 0);
7ab12479
JB
1902 Fset_marker (w->pointm,
1903 make_number (BUF_PT (XBUFFER (buffer))),
1904 buffer);
1905 set_marker_restricted (w->start,
1906 make_number (XBUFFER (buffer)->last_window_start),
1907 buffer);
1908 w->start_at_line_beg = Qnil;
e36ab06b 1909 w->force_start = Qnil;
d834a2e9 1910 XSETFASTINT (w->last_modified, 0);
3cd21523 1911 XSETFASTINT (w->last_overlay_modified, 0);
7ab12479 1912 windows_or_buffers_changed++;
5b03d3c0
RS
1913
1914 /* We must select BUFFER for running the window-scroll-functions.
1915 If WINDOW is selected, switch permanently.
1916 Otherwise, switch but go back to the ambient buffer afterward. */
7ab12479
JB
1917 if (EQ (window, selected_window))
1918 Fset_buffer (buffer);
5b03d3c0
RS
1919 /* We can't check ! NILP (Vwindow_scroll_functions) here
1920 because that might itself be a local variable. */
1921 else if (window_initialized)
1922 {
1923 record_unwind_protect (Fset_window_buffer_unwind, Fcurrent_buffer ());
1924 Fset_buffer (buffer);
1925 }
1926
dba06815
RS
1927 if (! NILP (Vwindow_scroll_functions))
1928 run_hook_with_args_2 (Qwindow_scroll_functions, window,
1929 Fmarker_position (w->start));
7ab12479 1930
543f5fb1
RS
1931 if (! NILP (Vwindow_configuration_change_hook)
1932 && ! NILP (Vrun_hooks))
1933 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
1934
5b03d3c0
RS
1935 unbind_to (count, Qnil);
1936
7ab12479
JB
1937 return Qnil;
1938}
1939
1940DEFUN ("select-window", Fselect_window, Sselect_window, 1, 1, 0,
1941 "Select WINDOW. Most editing will apply to WINDOW's buffer.\n\
1942The main editor command loop selects the buffer of the selected window\n\
1943before each command.")
1944 (window)
1945 register Lisp_Object window;
1946{
1947 register struct window *w;
1948 register struct window *ow = XWINDOW (selected_window);
1949
605be8af 1950 CHECK_LIVE_WINDOW (window, 0);
7ab12479
JB
1951
1952 w = XWINDOW (window);
1953
265a9e55 1954 if (NILP (w->buffer))
7ab12479
JB
1955 error ("Trying to select deleted window or non-leaf window");
1956
d834a2e9 1957 XSETFASTINT (w->use_time, ++window_select_count);
7ab12479
JB
1958 if (EQ (window, selected_window))
1959 return window;
1960
1961 Fset_marker (ow->pointm, make_number (BUF_PT (XBUFFER (ow->buffer))),
1962 ow->buffer);
1963
1964 selected_window = window;
44fa5b1e 1965 if (XFRAME (WINDOW_FRAME (w)) != selected_frame)
7ab12479 1966 {
44fa5b1e 1967 XFRAME (WINDOW_FRAME (w))->selected_window = window;
147a6615
RS
1968 /* Use this rather than Fhandle_switch_frame
1969 so that FRAME_FOCUS_FRAME is moved appropriately as we
1970 move around in the state where a minibuffer in a separate
1971 frame is active. */
1972 Fselect_frame (WINDOW_FRAME (w), Qnil);
7ab12479
JB
1973 }
1974 else
44fa5b1e 1975 selected_frame->selected_window = window;
7ab12479
JB
1976
1977 record_buffer (w->buffer);
1978 Fset_buffer (w->buffer);
1979
86e48436
RS
1980 XBUFFER (w->buffer)->last_selected_window = window;
1981
7ab12479
JB
1982 /* Go to the point recorded in the window.
1983 This is important when the buffer is in more
1984 than one window. It also matters when
1985 redisplay_window has altered point after scrolling,
1986 because it makes the change only in the window. */
1987 {
1988 register int new_point = marker_position (w->pointm);
1989 if (new_point < BEGV)
1990 SET_PT (BEGV);
a9c95e08 1991 else if (new_point > ZV)
7ab12479
JB
1992 SET_PT (ZV);
1993 else
1994 SET_PT (new_point);
1995 }
1996
1997 windows_or_buffers_changed++;
1998 return window;
1999}
2000
441a127e
RS
2001/* Deiconify the frame containing the window WINDOW,
2002 unless it is the selected frame;
2003 then return WINDOW.
2004
2005 The reason for the exception for the selected frame
2006 is that it seems better not to change the selected frames visibility
2007 merely because of displaying a different buffer in it.
2008 The deiconification is useful when a buffer gets shown in
2009 another frame that you were not using lately. */
d07f802a
RS
2010
2011static Lisp_Object
2012display_buffer_1 (window)
2013 Lisp_Object window;
2014{
d07f802a
RS
2015 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (window)));
2016 FRAME_SAMPLE_VISIBILITY (f);
60117126
RS
2017 if (f != selected_frame)
2018 {
2019 if (FRAME_ICONIFIED_P (f))
2020 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (window)));
37962e60 2021 else if (FRAME_VISIBLE_P (f))
60117126
RS
2022 Fraise_frame (WINDOW_FRAME (XWINDOW (window)));
2023 }
d07f802a
RS
2024 return window;
2025}
2026
4628f7a4 2027DEFUN ("special-display-p", Fspecial_display_p, Sspecial_display_p, 1, 1, 0,
0f7d64d2
GV
2028 "Returns non-nil if a buffer named BUFFER-NAME would be created specially.\n\
2029The value is actually t if the frame should be called with default frame\n\
2030parameters, and a list of frame parameters if they were specified.\n\
4628f7a4
EN
2031See `special-display-buffer-names', and `special-display-regexps'.")
2032 (buffer_name)
2033 Lisp_Object buffer_name;
2034{
2035 Lisp_Object tem;
2036
2037 CHECK_STRING (buffer_name, 1);
2038
2039 tem = Fmember (buffer_name, Vspecial_display_buffer_names);
2040 if (!NILP (tem))
2041 return Qt;
2042
2043 tem = Fassoc (buffer_name, Vspecial_display_buffer_names);
2044 if (!NILP (tem))
2045 return XCDR (tem);
2046
2047 for (tem = Vspecial_display_regexps; CONSP (tem); tem = XCDR (tem))
2048 {
2049 Lisp_Object car = XCAR (tem);
2050 if (STRINGP (car)
2051 && fast_string_match (car, buffer_name) >= 0)
2052 return Qt;
2053 else if (CONSP (car)
2054 && STRINGP (XCAR (car))
2055 && fast_string_match (XCAR (car), buffer_name) >= 0)
2056 return XCDR (tem);
2057 }
2058 return Qnil;
2059}
2060
2061DEFUN ("same-window-p", Fsame_window_p, Ssame_window_p, 1, 1, 0,
0f7d64d2 2062 "Returns non-nil if a new buffer named BUFFER-NAME would use the same window.\n\
4628f7a4
EN
2063See `same-window-buffer-names' and `same-window-regexps'.")
2064 (buffer_name)
2065 Lisp_Object buffer_name;
2066{
2067 Lisp_Object tem;
2068
2069 CHECK_STRING (buffer_name, 1);
2070
2071 tem = Fmember (buffer_name, Vsame_window_buffer_names);
2072 if (!NILP (tem))
2073 return Qt;
2074
2075 tem = Fassoc (buffer_name, Vsame_window_buffer_names);
2076 if (!NILP (tem))
2077 return Qt;
2078
2079 for (tem = Vsame_window_regexps; CONSP (tem); tem = XCDR (tem))
2080 {
2081 Lisp_Object car = XCAR (tem);
2082 if (STRINGP (car)
2083 && fast_string_match (car, buffer_name) >= 0)
2084 return Qt;
2085 else if (CONSP (car)
2086 && STRINGP (XCAR (car))
2087 && fast_string_match (XCAR (car), buffer_name) >= 0)
2088 return Qt;
2089 }
2090 return Qnil;
2091}
2092
35aaf00c 2093DEFUN ("display-buffer", Fdisplay_buffer, Sdisplay_buffer, 1, 2,
62a7e6eb 2094 "BDisplay buffer: \nP", /* Use B so the default is (other-buffer). */
7ab12479
JB
2095 "Make BUFFER appear in some window but don't select it.\n\
2096BUFFER can be a buffer or a buffer name.\n\
2097If BUFFER is shown already in some window, just use that one,\n\
2098unless the window is the selected window and the optional second\n\
46d3268a 2099argument NOT-THIS-WINDOW is non-nil (interactively, with prefix arg).\n\
5141b901 2100If `pop-up-frames' is non-nil, make a new frame if no window shows BUFFER.\n\
5abcf432
RS
2101Returns the window displaying BUFFER.\n\
2102\n\
2103The variables `special-display-buffer-names', `special-display-regexps',\n\
2104`same-window-buffer-names', and `same-window-regexps' customize how certain\n\
2105buffer names are handled.")
7ab12479
JB
2106 (buffer, not_this_window)
2107 register Lisp_Object buffer, not_this_window;
2108{
a90712c2 2109 register Lisp_Object window, tem;
7ab12479
JB
2110
2111 buffer = Fget_buffer (buffer);
2112 CHECK_BUFFER (buffer, 0);
2113
265a9e55 2114 if (!NILP (Vdisplay_buffer_function))
7ab12479
JB
2115 return call2 (Vdisplay_buffer_function, buffer, not_this_window);
2116
265a9e55 2117 if (NILP (not_this_window)
7ab12479 2118 && XBUFFER (XWINDOW (selected_window)->buffer) == XBUFFER (buffer))
d07f802a 2119 return display_buffer_1 (selected_window);
7ab12479 2120
855d8627
RS
2121 /* See if the user has specified this buffer should appear
2122 in the selected window. */
2123 if (NILP (not_this_window))
2124 {
4628f7a4 2125 tem = Fsame_window_p (XBUFFER (buffer)->name);
855d8627 2126 if (!NILP (tem))
c63dc4a2
RS
2127 {
2128 Fswitch_to_buffer (buffer, Qnil);
d07f802a 2129 return display_buffer_1 (selected_window);
c63dc4a2 2130 }
855d8627
RS
2131 }
2132
e8edb3ae 2133 /* If pop_up_frames,
73dc5198
KH
2134 look for a window showing BUFFER on any visible or iconified frame.
2135 Otherwise search only the current frame. */
2136 if (pop_up_frames || last_nonminibuf_frame == 0)
2137 XSETFASTINT (tem, 0);
2138 else
73dc5198
KH
2139 XSETFRAME (tem, last_nonminibuf_frame);
2140 window = Fget_buffer_window (buffer, tem);
265a9e55
JB
2141 if (!NILP (window)
2142 && (NILP (not_this_window) || !EQ (window, selected_window)))
f812f9c6 2143 {
d07f802a 2144 return display_buffer_1 (window);
f812f9c6 2145 }
7ab12479 2146
a90712c2 2147 /* Certain buffer names get special handling. */
4628f7a4 2148 if (!NILP (Vspecial_display_function))
a90712c2 2149 {
4628f7a4
EN
2150 tem = Fspecial_display_p (XBUFFER (buffer)->name);
2151 if (EQ (tem, Qt))
a90712c2 2152 return call1 (Vspecial_display_function, buffer);
4628f7a4
EN
2153 if (CONSP (tem))
2154 return call2 (Vspecial_display_function, buffer, tem);
a90712c2
RS
2155 }
2156
44fa5b1e
JB
2157 /* If there are no frames open that have more than a minibuffer,
2158 we need to create a new frame. */
2159 if (pop_up_frames || last_nonminibuf_frame == 0)
7ab12479 2160 {
a90712c2 2161 window = Fframe_selected_window (call0 (Vpop_up_frame_function));
7ab12479 2162 Fset_window_buffer (window, buffer);
d07f802a 2163 return display_buffer_1 (window);
7ab12479 2164 }
7ab12479 2165
43bad991 2166 if (pop_up_windows
44fa5b1e 2167 || FRAME_MINIBUF_ONLY_P (selected_frame)
cee67da9
RS
2168 /* If the current frame is a special display frame,
2169 don't try to reuse its windows. */
2170 || !NILP (XWINDOW (FRAME_ROOT_WINDOW (selected_frame))->dedicated)
43bad991 2171 )
7ab12479 2172 {
12cae7c0
KH
2173 Lisp_Object frames;
2174
37962e60 2175 frames = Qnil;
44fa5b1e 2176 if (FRAME_MINIBUF_ONLY_P (selected_frame))
74112613 2177 XSETFRAME (frames, last_nonminibuf_frame);
7ab12479
JB
2178 /* Don't try to create a window if would get an error */
2179 if (split_height_threshold < window_min_height << 1)
2180 split_height_threshold = window_min_height << 1;
2181
cee67da9
RS
2182 /* Note that both Fget_largest_window and Fget_lru_window
2183 ignore minibuffers and dedicated windows.
2184 This means they can return nil. */
7ab12479 2185
cee67da9
RS
2186 /* If the frame we would try to split cannot be split,
2187 try other frames. */
2188 if (FRAME_NO_SPLIT_P (NILP (frames) ? selected_frame
2189 : last_nonminibuf_frame))
2190 {
2191 /* Try visible frames first. */
2192 window = Fget_largest_window (Qvisible);
2193 /* If that didn't work, try iconified frames. */
2194 if (NILP (window))
2195 window = Fget_largest_window (make_number (0));
2196 if (NILP (window))
2197 window = Fget_largest_window (Qt);
2198 }
2199 else
2200 window = Fget_largest_window (frames);
2201
92cca945
RS
2202 /* If we got a tall enough full-width window that can be split,
2203 split it. */
265a9e55 2204 if (!NILP (window)
92cca945 2205 && ! FRAME_NO_SPLIT_P (XFRAME (XWINDOW (window)->frame))
7ab12479 2206 && window_height (window) >= split_height_threshold
111e5992 2207 && WINDOW_FULL_WIDTH_P (XWINDOW (window)))
7ab12479
JB
2208 window = Fsplit_window (window, Qnil, Qnil);
2209 else
2210 {
1942f68f
RS
2211 Lisp_Object upper, lower, other;
2212
44fa5b1e 2213 window = Fget_lru_window (frames);
92cca945
RS
2214 /* If the LRU window is selected, and big enough,
2215 and can be split, split it. */
cee67da9 2216 if (!NILP (window)
92cca945 2217 && ! FRAME_NO_SPLIT_P (XFRAME (XWINDOW (window)->frame))
cee67da9
RS
2218 && (EQ (window, selected_window)
2219 || EQ (XWINDOW (window)->parent, Qnil))
7ab12479
JB
2220 && window_height (window) >= window_min_height << 1)
2221 window = Fsplit_window (window, Qnil, Qnil);
cee67da9 2222 /* If Fget_lru_window returned nil, try other approaches. */
48d9379d 2223
cee67da9 2224 /* Try visible frames first. */
48d9379d
RS
2225 if (NILP (window))
2226 window = Fget_buffer_window (buffer, Qvisible);
cee67da9
RS
2227 if (NILP (window))
2228 window = Fget_largest_window (Qvisible);
2229 /* If that didn't work, try iconified frames. */
48d9379d
RS
2230 if (NILP (window))
2231 window = Fget_buffer_window (buffer, make_number (0));
cee67da9
RS
2232 if (NILP (window))
2233 window = Fget_largest_window (make_number (0));
2234 /* Try invisible frames. */
48d9379d
RS
2235 if (NILP (window))
2236 window = Fget_buffer_window (buffer, Qt);
cee67da9
RS
2237 if (NILP (window))
2238 window = Fget_largest_window (Qt);
2239 /* As a last resort, make a new frame. */
2240 if (NILP (window))
2241 window = Fframe_selected_window (call0 (Vpop_up_frame_function));
1942f68f
RS
2242 /* If window appears above or below another,
2243 even out their heights. */
cac66e4f 2244 other = upper = lower = Qnil;
1942f68f
RS
2245 if (!NILP (XWINDOW (window)->prev))
2246 other = upper = XWINDOW (window)->prev, lower = window;
2247 if (!NILP (XWINDOW (window)->next))
2248 other = lower = XWINDOW (window)->next, upper = window;
2249 if (!NILP (other)
2250 /* Check that OTHER and WINDOW are vertically arrayed. */
296b535c
KH
2251 && !EQ (XWINDOW (other)->top, XWINDOW (window)->top)
2252 && (XFASTINT (XWINDOW (other)->height)
2253 > XFASTINT (XWINDOW (window)->height)))
1942f68f 2254 {
296b535c
KH
2255 int total = (XFASTINT (XWINDOW (other)->height)
2256 + XFASTINT (XWINDOW (window)->height));
8d77c0c8
KH
2257 Lisp_Object old_selected_window;
2258 old_selected_window = selected_window;
1942f68f 2259
8d77c0c8 2260 selected_window = upper;
296b535c
KH
2261 change_window_height ((total / 2
2262 - XFASTINT (XWINDOW (upper)->height)),
2263 0);
1942f68f
RS
2264 selected_window = old_selected_window;
2265 }
7ab12479
JB
2266 }
2267 }
2268 else
2269 window = Fget_lru_window (Qnil);
2270
2271 Fset_window_buffer (window, buffer);
d07f802a 2272 return display_buffer_1 (window);
7ab12479
JB
2273}
2274
2275void
2276temp_output_buffer_show (buf)
2277 register Lisp_Object buf;
2278{
2279 register struct buffer *old = current_buffer;
2280 register Lisp_Object window;
2281 register struct window *w;
2282
bccd3dd1
RS
2283 XBUFFER (buf)->directory = current_buffer->directory;
2284
7ab12479 2285 Fset_buffer (buf);
c6367666 2286 BUF_SAVE_MODIFF (XBUFFER (buf)) = MODIFF;
7ab12479
JB
2287 BEGV = BEG;
2288 ZV = Z;
2289 SET_PT (BEG);
1479ef51 2290 XBUFFER (buf)->clip_changed = 1;
7ab12479
JB
2291 set_buffer_internal (old);
2292
2293 if (!EQ (Vtemp_buffer_show_function, Qnil))
2294 call1 (Vtemp_buffer_show_function, buf);
2295 else
2296 {
2297 window = Fdisplay_buffer (buf, Qnil);
2298
44fa5b1e
JB
2299 if (XFRAME (XWINDOW (window)->frame) != selected_frame)
2300 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (window)));
7ab12479
JB
2301 Vminibuf_scroll_window = window;
2302 w = XWINDOW (window);
d834a2e9 2303 XSETFASTINT (w->hscroll, 0);
7ab12479
JB
2304 set_marker_restricted (w->start, make_number (1), buf);
2305 set_marker_restricted (w->pointm, make_number (1), buf);
a58ec57d 2306
37962e60 2307 /* Run temp-buffer-show-hook, with the chosen window selected. */
f52cca03 2308 if (!NILP (Vrun_hooks))
2cccc823 2309 {
f52cca03
RS
2310 Lisp_Object tem;
2311 tem = Fboundp (Qtemp_buffer_show_hook);
2cccc823
RS
2312 if (!NILP (tem))
2313 {
f52cca03
RS
2314 tem = Fsymbol_value (Qtemp_buffer_show_hook);
2315 if (!NILP (tem))
2316 {
2317 int count = specpdl_ptr - specpdl;
2cccc823 2318
f52cca03
RS
2319 /* Select the window that was chosen, for running the hook. */
2320 record_unwind_protect (Fset_window_configuration,
2321 Fcurrent_window_configuration (Qnil));
2cccc823 2322
f52cca03
RS
2323 Fselect_window (window);
2324 call1 (Vrun_hooks, Qtemp_buffer_show_hook);
2325 unbind_to (count, Qnil);
2326 }
2cccc823
RS
2327 }
2328 }
2329 }
7ab12479
JB
2330}
2331\f
2332static
2333make_dummy_parent (window)
2334 Lisp_Object window;
2335{
cffec418 2336 Lisp_Object new;
7ab12479 2337 register struct window *o, *p;
cffec418
KH
2338 register struct Lisp_Vector *vec;
2339 int i;
7ab12479 2340
cffec418
KH
2341 o = XWINDOW (window);
2342 vec = allocate_vectorlike ((EMACS_INT)VECSIZE (struct window));
2343 for (i = 0; i < VECSIZE (struct window); ++i)
2344 vec->contents[i] = ((struct Lisp_Vector *)o)->contents[i];
2345 vec->size = VECSIZE (struct window);
2346 p = (struct window *)vec;
2347 XSETWINDOW (new, p);
7ab12479 2348
d834a2e9 2349 XSETFASTINT (p->sequence_number, ++sequence_number);
7ab12479
JB
2350
2351 /* Put new into window structure in place of window */
2352 replace_window (window, new);
2353
2354 o->next = Qnil;
2355 o->prev = Qnil;
2356 o->vchild = Qnil;
2357 o->hchild = Qnil;
2358 o->parent = new;
2359
2360 p->start = Qnil;
2361 p->pointm = Qnil;
2362 p->buffer = Qnil;
2363}
2364
2365DEFUN ("split-window", Fsplit_window, Ssplit_window, 0, 3, "",
2366 "Split WINDOW, putting SIZE lines in the first of the pair.\n\
2367WINDOW defaults to selected one and SIZE to half its size.\n\
77ae0fe3 2368If optional third arg HORFLAG is non-nil, split side by side\n\
7ab12479 2369and put SIZE columns in the first of the pair.")
77ae0fe3
KH
2370 (window, size, horflag)
2371 Lisp_Object window, size, horflag;
7ab12479
JB
2372{
2373 register Lisp_Object new;
2374 register struct window *o, *p;
c0807608 2375 FRAME_PTR fo;
77ae0fe3 2376 register int size_int;
7ab12479 2377
265a9e55 2378 if (NILP (window))
7ab12479
JB
2379 window = selected_window;
2380 else
605be8af 2381 CHECK_LIVE_WINDOW (window, 0);
7ab12479
JB
2382
2383 o = XWINDOW (window);
c0807608 2384 fo = XFRAME (WINDOW_FRAME (o));
7ab12479 2385
77ae0fe3 2386 if (NILP (size))
7ab12479 2387 {
265a9e55 2388 if (!NILP (horflag))
c0807608
KH
2389 /* Calculate the size of the left-hand window, by dividing
2390 the usable space in columns by two. */
a59fed7e 2391 size_int = XFASTINT (o->width) >> 1;
7ab12479 2392 else
77ae0fe3 2393 size_int = XFASTINT (o->height) >> 1;
7ab12479
JB
2394 }
2395 else
2396 {
77ae0fe3
KH
2397 CHECK_NUMBER (size, 1);
2398 size_int = XINT (size);
7ab12479
JB
2399 }
2400
2401 if (MINI_WINDOW_P (o))
2402 error ("Attempt to split minibuffer window");
7ab12479 2403
a481b3ea 2404 check_min_window_sizes ();
7ab12479 2405
265a9e55 2406 if (NILP (horflag))
7ab12479 2407 {
77ae0fe3
KH
2408 if (size_int < window_min_height)
2409 error ("Window height %d too small (after splitting)", size_int);
2410 if (size_int + window_min_height > XFASTINT (o->height))
37962e60 2411 error ("Window height %d too small (after splitting)",
77ae0fe3 2412 XFASTINT (o->height) - size_int);
265a9e55
JB
2413 if (NILP (o->parent)
2414 || NILP (XWINDOW (o->parent)->vchild))
7ab12479
JB
2415 {
2416 make_dummy_parent (window);
2417 new = o->parent;
2418 XWINDOW (new)->vchild = window;
2419 }
2420 }
2421 else
2422 {
77ae0fe3
KH
2423 if (size_int < window_min_width)
2424 error ("Window width %d too small (after splitting)", size_int);
a59fed7e
RS
2425
2426 if (size_int + window_min_width > XFASTINT (o->width))
37962e60 2427 error ("Window width %d too small (after splitting)",
a59fed7e 2428 XFASTINT (o->width) - size_int);
265a9e55
JB
2429 if (NILP (o->parent)
2430 || NILP (XWINDOW (o->parent)->hchild))
7ab12479
JB
2431 {
2432 make_dummy_parent (window);
2433 new = o->parent;
2434 XWINDOW (new)->hchild = window;
2435 }
2436 }
2437
2438 /* Now we know that window's parent is a vertical combination
2439 if we are dividing vertically, or a horizontal combination
2440 if we are making side-by-side windows */
2441
2442 windows_or_buffers_changed++;
c0807608 2443 FRAME_WINDOW_SIZES_CHANGED (fo) = 1;
7ab12479
JB
2444 new = make_window ();
2445 p = XWINDOW (new);
2446
44fa5b1e 2447 p->frame = o->frame;
7ab12479 2448 p->next = o->next;
265a9e55 2449 if (!NILP (p->next))
7ab12479
JB
2450 XWINDOW (p->next)->prev = new;
2451 p->prev = window;
2452 o->next = new;
2453 p->parent = o->parent;
2454 p->buffer = Qt;
2455
44fa5b1e 2456 /* Apportion the available frame space among the two new windows */
7ab12479 2457
265a9e55 2458 if (!NILP (horflag))
7ab12479
JB
2459 {
2460 p->height = o->height;
2461 p->top = o->top;
a59fed7e 2462 XSETFASTINT (p->width, XFASTINT (o->width) - size_int);
77ae0fe3
KH
2463 XSETFASTINT (o->width, size_int);
2464 XSETFASTINT (p->left, XFASTINT (o->left) + size_int);
7ab12479
JB
2465 }
2466 else
2467 {
2468 p->left = o->left;
2469 p->width = o->width;
77ae0fe3
KH
2470 XSETFASTINT (p->height, XFASTINT (o->height) - size_int);
2471 XSETFASTINT (o->height, size_int);
2472 XSETFASTINT (p->top, XFASTINT (o->top) + size_int);
7ab12479
JB
2473 }
2474
543f5fb1
RS
2475 Fset_window_buffer (new, o->buffer);
2476
7ab12479
JB
2477 return new;
2478}
2479\f
2480DEFUN ("enlarge-window", Fenlarge_window, Senlarge_window, 1, 2, "p",
2481 "Make current window ARG lines bigger.\n\
2482From program, optional second arg non-nil means grow sideways ARG columns.")
413430c5
EN
2483 (arg, side)
2484 register Lisp_Object arg, side;
7ab12479 2485{
413430c5
EN
2486 CHECK_NUMBER (arg, 0);
2487 change_window_height (XINT (arg), !NILP (side));
543f5fb1
RS
2488
2489 if (! NILP (Vwindow_configuration_change_hook))
2490 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
2491
7ab12479
JB
2492 return Qnil;
2493}
2494
2495DEFUN ("shrink-window", Fshrink_window, Sshrink_window, 1, 2, "p",
2496 "Make current window ARG lines smaller.\n\
413430c5
EN
2497From program, optional second arg non-nil means shrink sideways arg columns.")
2498 (arg, side)
2499 register Lisp_Object arg, side;
7ab12479 2500{
413430c5
EN
2501 CHECK_NUMBER (arg, 0);
2502 change_window_height (-XINT (arg), !NILP (side));
543f5fb1
RS
2503
2504 if (! NILP (Vwindow_configuration_change_hook))
2505 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
2506
7ab12479
JB
2507 return Qnil;
2508}
2509
2510int
2511window_height (window)
2512 Lisp_Object window;
2513{
2514 register struct window *p = XWINDOW (window);
2515 return XFASTINT (p->height);
2516}
2517
2518int
2519window_width (window)
2520 Lisp_Object window;
2521{
2522 register struct window *p = XWINDOW (window);
2523 return XFASTINT (p->width);
2524}
2525
05c2896a
JB
2526#define MINSIZE(w) \
2527 (widthflag \
2528 ? window_min_width \
2529 : (MINI_WINDOW_P (XWINDOW (w)) ? 1 : window_min_height))
7ab12479
JB
2530
2531#define CURBEG(w) \
05c2896a 2532 *(widthflag ? (int *) &(XWINDOW (w)->left) : (int *) &(XWINDOW (w)->top))
7ab12479
JB
2533
2534#define CURSIZE(w) \
05c2896a 2535 *(widthflag ? (int *) &(XWINDOW (w)->width) : (int *) &(XWINDOW (w)->height))
7ab12479
JB
2536
2537/* Unlike set_window_height, this function
2538 also changes the heights of the siblings so as to
2539 keep everything consistent. */
2540
2541change_window_height (delta, widthflag)
2542 register int delta;
2543 int widthflag;
2544{
2545 register Lisp_Object parent;
2546 Lisp_Object window;
2547 register struct window *p;
2548 int *sizep;
2549 int (*sizefun) () = widthflag ? window_width : window_height;
2550 register int (*setsizefun) () = (widthflag
2551 ? set_window_width
2552 : set_window_height);
db98a733
RS
2553 int maximum;
2554 Lisp_Object next, prev;
7ab12479 2555
a481b3ea 2556 check_min_window_sizes ();
7ab12479
JB
2557
2558 window = selected_window;
2559 while (1)
2560 {
2561 p = XWINDOW (window);
2562 parent = p->parent;
265a9e55 2563 if (NILP (parent))
7ab12479
JB
2564 {
2565 if (widthflag)
2566 error ("No other window to side of this one");
2567 break;
2568 }
265a9e55
JB
2569 if (widthflag ? !NILP (XWINDOW (parent)->hchild)
2570 : !NILP (XWINDOW (parent)->vchild))
7ab12479
JB
2571 break;
2572 window = parent;
2573 }
2574
05c2896a 2575 sizep = &CURSIZE (window);
7ab12479 2576
7ab12479
JB
2577 {
2578 register int maxdelta;
7ab12479 2579
265a9e55
JB
2580 maxdelta = (!NILP (parent) ? (*sizefun) (parent) - *sizep
2581 : !NILP (p->next) ? (*sizefun) (p->next) - MINSIZE (p->next)
2582 : !NILP (p->prev) ? (*sizefun) (p->prev) - MINSIZE (p->prev)
44fa5b1e
JB
2583 /* This is a frame with only one window, a minibuffer-only
2584 or a minibufferless frame. */
d5783c40 2585 : (delta = 0));
7ab12479
JB
2586
2587 if (delta > maxdelta)
2588 /* This case traps trying to make the minibuffer
44fa5b1e
JB
2589 the full frame, or make the only window aside from the
2590 minibuffer the full frame. */
7ab12479 2591 delta = maxdelta;
6b54027b 2592 }
d5783c40 2593
6b54027b
RS
2594 if (*sizep + delta < MINSIZE (window))
2595 {
543f5fb1 2596 delete_window (window);
d5783c40 2597 return;
6b54027b
RS
2598 }
2599
2600 if (delta == 0)
2601 return;
7ab12479 2602
db98a733
RS
2603 /* Find the total we can get from other siblings. */
2604 maximum = 0;
2605 for (next = p->next; ! NILP (next); next = XWINDOW (next)->next)
2606 maximum += (*sizefun) (next) - MINSIZE (next);
2607 for (prev = p->prev; ! NILP (prev); prev = XWINDOW (prev)->prev)
2608 maximum += (*sizefun) (prev) - MINSIZE (prev);
2609
2610 /* If we can get it all from them, do so. */
2611 if (delta < maximum)
7ab12479 2612 {
db98a733
RS
2613 Lisp_Object first_unaffected;
2614 Lisp_Object first_affected;
2615
2616 next = p->next;
2617 prev = p->prev;
2618 first_affected = window;
2619 /* Look at one sibling at a time,
2620 moving away from this window in both directions alternately,
2621 and take as much as we can get without deleting that sibling. */
dc91fb5d 2622 while (delta != 0)
db98a733
RS
2623 {
2624 if (delta == 0)
2625 break;
2626 if (! NILP (next))
2627 {
2628 int this_one = (*sizefun) (next) - MINSIZE (next);
2629 if (this_one > delta)
2630 this_one = delta;
2631
2632 (*setsizefun) (next, (*sizefun) (next) - this_one, 0);
2633 (*setsizefun) (window, *sizep + this_one, 0);
2634
2635 delta -= this_one;
2636 next = XWINDOW (next)->next;
2637 }
2638 if (delta == 0)
2639 break;
2640 if (! NILP (prev))
2641 {
2642 int this_one = (*sizefun) (prev) - MINSIZE (prev);
2643 if (this_one > delta)
2644 this_one = delta;
2645
2646 first_affected = prev;
2647
2648 (*setsizefun) (prev, (*sizefun) (prev) - this_one, 0);
2649 (*setsizefun) (window, *sizep + this_one, 0);
2650
2651 delta -= this_one;
2652 prev = XWINDOW (prev)->prev;
2653 }
2654 }
2655
2656 /* Now recalculate the edge positions of all the windows affected,
2657 based on the new sizes. */
2658 first_unaffected = next;
2659 prev = first_affected;
2660 for (next = XWINDOW (prev)->next; ! EQ (next, first_unaffected);
2661 prev = next, next = XWINDOW (next)->next)
2662 {
2663 CURBEG (next) = CURBEG (prev) + (*sizefun) (prev);
2664 /* This does not change size of NEXT,
2665 but it propagates the new top edge to its children */
2666 (*setsizefun) (next, (*sizefun) (next), 0);
2667 }
7ab12479
JB
2668 }
2669 else
2670 {
2671 register int delta1;
2672 register int opht = (*sizefun) (parent);
2673
2674 /* If trying to grow this window to or beyond size of the parent,
2675 make delta1 so big that, on shrinking back down,
2676 all the siblings end up with less than one line and are deleted. */
2677 if (opht <= *sizep + delta)
2678 delta1 = opht * opht * 2;
2679 /* Otherwise, make delta1 just right so that if we add delta1
2680 lines to this window and to the parent, and then shrink
2681 the parent back to its original size, the new proportional
2682 size of this window will increase by delta. */
2683 else
2684 delta1 = (delta * opht * 100) / ((opht - *sizep - delta) * 100);
2685
2686 /* Add delta1 lines or columns to this window, and to the parent,
2687 keeping things consistent while not affecting siblings. */
05c2896a 2688 CURSIZE (parent) = opht + delta1;
7ab12479
JB
2689 (*setsizefun) (window, *sizep + delta1, 0);
2690
2691 /* Squeeze out delta1 lines or columns from our parent,
2692 shriking this window and siblings proportionately.
2693 This brings parent back to correct size.
2694 Delta1 was calculated so this makes this window the desired size,
2695 taking it all out of the siblings. */
2696 (*setsizefun) (parent, opht, 0);
2697 }
2698
d834a2e9 2699 XSETFASTINT (p->last_modified, 0);
3cd21523 2700 XSETFASTINT (p->last_overlay_modified, 0);
7ab12479
JB
2701}
2702#undef MINSIZE
2703#undef CURBEG
2704#undef CURSIZE
2705
2706\f
2707/* Return number of lines of text (not counting mode line) in W. */
2708
2709int
2710window_internal_height (w)
2711 struct window *w;
2712{
2713 int ht = XFASTINT (w->height);
2714
2715 if (MINI_WINDOW_P (w))
2716 return ht;
2717
265a9e55
JB
2718 if (!NILP (w->parent) || !NILP (w->vchild) || !NILP (w->hchild)
2719 || !NILP (w->next) || !NILP (w->prev)
44fa5b1e 2720 || FRAME_WANTS_MODELINE_P (XFRAME (WINDOW_FRAME (w))))
7ab12479
JB
2721 return ht - 1;
2722
2723 return ht;
2724}
2725
535e0b8e
JB
2726
2727/* Return the number of columns in W.
a3c87d4e 2728 Don't count columns occupied by scroll bars or the vertical bar
535e0b8e
JB
2729 separating W from the sibling to its right. */
2730int
2731window_internal_width (w)
2732 struct window *w;
2733{
2734 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
535e0b8e
JB
2735 int width = XINT (w->width);
2736
a3c87d4e
JB
2737 /* Scroll bars occupy a few columns. */
2738 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
ca0d0bb9 2739 return width - FRAME_SCROLL_BAR_COLS (f);
535e0b8e
JB
2740
2741 /* The column of `|' characters separating side-by-side windows
2742 occupies one column only. */
111e5992
RS
2743 if (!WINDOW_RIGHTMOST_P (w) && !WINDOW_FULL_WIDTH_P (w))
2744 return width - 1;
2745
2746 return width;
535e0b8e
JB
2747}
2748
2749
101d1605 2750/* Scroll contents of window WINDOW up N lines.
9317a85d 2751 If WHOLE is nonzero, it means scroll N screenfuls instead. */
7ab12479 2752
101d1605
RS
2753static void
2754window_scroll (window, n, whole, noerror)
7ab12479
JB
2755 Lisp_Object window;
2756 int n;
101d1605 2757 int whole;
f8026fd8 2758 int noerror;
7ab12479
JB
2759{
2760 register struct window *w = XWINDOW (window);
5ce7b543 2761 register int opoint = PT;
7ab12479
JB
2762 register int pos;
2763 register int ht = window_internal_height (w);
2764 register Lisp_Object tem;
2765 int lose;
2766 Lisp_Object bolp, nmoved;
345d45b2 2767 int startpos;
101d1605
RS
2768 struct position posit;
2769 int original_vpos;
2770
2771 startpos = marker_position (w->start);
2772
2773 posit = *compute_motion (startpos, 0, 0, 0,
2774 PT, ht, 0,
2775 window_internal_width (w), XINT (w->hscroll),
2776 0, w);
2777 original_vpos = posit.vpos;
0a1f771a 2778
d834a2e9 2779 XSETFASTINT (tem, PT);
7ab12479
JB
2780 tem = Fpos_visible_in_window_p (tem, window);
2781
265a9e55 2782 if (NILP (tem))
7ab12479 2783 {
cd2be1dd 2784 Fvertical_motion (make_number (- (ht / 2)), window);
345d45b2 2785 startpos = PT;
7ab12479
JB
2786 }
2787
345d45b2 2788 SET_PT (startpos);
5ce7b543 2789 lose = n < 0 && PT == BEGV;
540b6aa0 2790 Fvertical_motion (make_number (n), window);
5ce7b543 2791 pos = PT;
7ab12479
JB
2792 bolp = Fbolp ();
2793 SET_PT (opoint);
2794
2795 if (lose)
f8026fd8
JB
2796 {
2797 if (noerror)
2798 return;
2799 else
2800 Fsignal (Qbeginning_of_buffer, Qnil);
2801 }
7ab12479
JB
2802
2803 if (pos < ZV)
7ab12479 2804 {
0c7da84e
RS
2805 int this_scroll_margin = scroll_margin;
2806
2807 /* Don't use a scroll margin that is negative or too large. */
2808 if (this_scroll_margin < 0)
2809 this_scroll_margin = 0;
2810
2811 if (XINT (w->height) < 4 * scroll_margin)
2812 this_scroll_margin = XINT (w->height) / 4;
2813
7ab12479
JB
2814 set_marker_restricted (w->start, make_number (pos), w->buffer);
2815 w->start_at_line_beg = bolp;
2816 w->update_mode_line = Qt;
d834a2e9 2817 XSETFASTINT (w->last_modified, 0);
3cd21523 2818 XSETFASTINT (w->last_overlay_modified, 0);
345d45b2
RS
2819 /* Set force_start so that redisplay_window will run
2820 the window-scroll-functions. */
2821 w->force_start = Qt;
0c7da84e 2822
9317a85d 2823 if (whole && scroll_preserve_screen_position)
0c7da84e
RS
2824 {
2825 SET_PT (pos);
101d1605 2826 Fvertical_motion (make_number (original_vpos), window);
0c7da84e 2827 }
101d1605
RS
2828 /* If we scrolled forward, put point enough lines down
2829 that it is outside the scroll margin. */
2830 else if (n > 0)
0c7da84e 2831 {
101d1605
RS
2832 int top_margin;
2833
2834 if (this_scroll_margin > 0)
2835 {
2836 SET_PT (pos);
2837 Fvertical_motion (make_number (this_scroll_margin), window);
2838 top_margin = PT;
2839 }
2840 else
2841 top_margin = pos;
2842
2843 if (top_margin <= opoint)
2844 SET_PT (opoint);
9317a85d 2845 else if (scroll_preserve_screen_position)
101d1605
RS
2846 {
2847 SET_PT (pos);
2848 Fvertical_motion (make_number (original_vpos), window);
2849 }
9317a85d
RS
2850 else
2851 SET_PT (pos);
0c7da84e 2852 }
101d1605 2853 else if (n < 0)
7ab12479 2854 {
101d1605
RS
2855 int bottom_margin;
2856
0c7da84e
RS
2857 /* If we scrolled backward, put point near the end of the window
2858 but not within the scroll margin. */
7ab12479 2859 SET_PT (pos);
0c7da84e 2860 tem = Fvertical_motion (make_number (ht - this_scroll_margin), window);
101d1605
RS
2861 if (XFASTINT (tem) == ht - this_scroll_margin)
2862 bottom_margin = PT;
2863 else
2864 bottom_margin = PT + 1;
2865
2866 if (bottom_margin > opoint)
7ab12479
JB
2867 SET_PT (opoint);
2868 else
101d1605 2869 {
9317a85d
RS
2870 if (scroll_preserve_screen_position)
2871 {
2872 SET_PT (pos);
2873 Fvertical_motion (make_number (original_vpos), window);
2874 }
2875 else
2876 Fvertical_motion (make_number (-1), window);
101d1605 2877 }
7ab12479
JB
2878 }
2879 }
2880 else
f8026fd8
JB
2881 {
2882 if (noerror)
2883 return;
2884 else
2885 Fsignal (Qend_of_buffer, Qnil);
2886 }
7ab12479
JB
2887}
2888\f
2889/* This is the guts of Fscroll_up and Fscroll_down. */
2890
2891static void
2892scroll_command (n, direction)
2893 register Lisp_Object n;
2894 int direction;
2895{
2896 register int defalt;
2897 int count = specpdl_ptr - specpdl;
2898
95605e15
JB
2899 /* If selected window's buffer isn't current, make it current for the moment.
2900 But don't screw up if window_scroll gets an error. */
7ab12479 2901 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
95605e15
JB
2902 {
2903 record_unwind_protect (save_excursion_restore, save_excursion_save ());
2904 Fset_buffer (XWINDOW (selected_window)->buffer);
2905 }
7ab12479
JB
2906
2907 defalt = (window_internal_height (XWINDOW (selected_window))
2908 - next_screen_context_lines);
2909 defalt = direction * (defalt < 1 ? 1 : defalt);
2910
265a9e55 2911 if (NILP (n))
101d1605 2912 window_scroll (selected_window, defalt, 1, 0);
7ab12479 2913 else if (EQ (n, Qminus))
101d1605 2914 window_scroll (selected_window, - defalt, 1, 0);
7ab12479
JB
2915 else
2916 {
2917 n = Fprefix_numeric_value (n);
101d1605 2918 window_scroll (selected_window, XINT (n) * direction, 0, 0);
7ab12479 2919 }
95605e15
JB
2920
2921 unbind_to (count, Qnil);
7ab12479
JB
2922}
2923
2924DEFUN ("scroll-up", Fscroll_up, Sscroll_up, 0, 1, "P",
2925 "Scroll text of current window upward ARG lines; or near full screen if no ARG.\n\
2926A near full screen is `next-screen-context-lines' less than a full screen.\n\
279e0e0c 2927Negative ARG means scroll downward.\n\
7ab12479 2928When calling from a program, supply a number as argument or nil.")
413430c5
EN
2929 (arg)
2930 Lisp_Object arg;
7ab12479 2931{
413430c5 2932 scroll_command (arg, 1);
7ab12479
JB
2933 return Qnil;
2934}
2935
2936DEFUN ("scroll-down", Fscroll_down, Sscroll_down, 0, 1, "P",
2937 "Scroll text of current window downward ARG lines; or near full screen if no ARG.\n\
2938A near full screen is `next-screen-context-lines' less than a full screen.\n\
279e0e0c 2939Negative ARG means scroll upward.\n\
7ab12479 2940When calling from a program, supply a number as argument or nil.")
413430c5
EN
2941 (arg)
2942 Lisp_Object arg;
7ab12479 2943{
413430c5 2944 scroll_command (arg, -1);
7ab12479
JB
2945 return Qnil;
2946}
ccd0664b
RS
2947\f
2948DEFUN ("other-window-for-scrolling", Fother_window_for_scrolling, Sother_window_for_scrolling, 0, 0, 0,
2949 "Return the other window for \"other window scroll\" commands.\n\
77b24de6 2950If in the minibuffer, `minibuffer-scroll-window' if non-nil\n\
ccd0664b
RS
2951specifies the window.\n\
2952If `other-window-scroll-buffer' is non-nil, a window\n\
2953showing that buffer is used.")
eb16ec06 2954 ()
7ab12479 2955{
ccd0664b 2956 Lisp_Object window;
7ab12479
JB
2957
2958 if (MINI_WINDOW_P (XWINDOW (selected_window))
265a9e55 2959 && !NILP (Vminibuf_scroll_window))
7ab12479
JB
2960 window = Vminibuf_scroll_window;
2961 /* If buffer is specified, scroll that buffer. */
265a9e55 2962 else if (!NILP (Vother_window_scroll_buffer))
7ab12479
JB
2963 {
2964 window = Fget_buffer_window (Vother_window_scroll_buffer, Qnil);
265a9e55 2965 if (NILP (window))
7ab12479
JB
2966 window = Fdisplay_buffer (Vother_window_scroll_buffer, Qt);
2967 }
2968 else
dbc4e1c1
JB
2969 {
2970 /* Nothing specified; look for a neighboring window on the same
2971 frame. */
2972 window = Fnext_window (selected_window, Qnil, Qnil);
2973
2974 if (EQ (window, selected_window))
2975 /* That didn't get us anywhere; look for a window on another
2976 visible frame. */
2977 do
2978 window = Fnext_window (window, Qnil, Qt);
2979 while (! FRAME_VISIBLE_P (XFRAME (WINDOW_FRAME (XWINDOW (window))))
2980 && ! EQ (window, selected_window));
2981 }
2982
605be8af 2983 CHECK_LIVE_WINDOW (window, 0);
7ab12479
JB
2984
2985 if (EQ (window, selected_window))
2986 error ("There is no other window");
2987
ccd0664b
RS
2988 return window;
2989}
2990
2991DEFUN ("scroll-other-window", Fscroll_other_window, Sscroll_other_window, 0, 1, "P",
2992 "Scroll next window upward ARG lines; or near full screen if no ARG.\n\
2993The next window is the one below the current one; or the one at the top\n\
2994if the current one is at the bottom. Negative ARG means scroll downward.\n\
2995When calling from a program, supply a number as argument or nil.\n\
2996\n\
2997If in the minibuffer, `minibuffer-scroll-window' if non-nil\n\
2998specifies the window to scroll.\n\
2999If `other-window-scroll-buffer' is non-nil, scroll the window\n\
3000showing that buffer, popping the buffer up if necessary.")
413430c5
EN
3001 (arg)
3002 register Lisp_Object arg;
ccd0664b
RS
3003{
3004 register Lisp_Object window;
2f787aa3 3005 register int defalt;
ccd0664b
RS
3006 register struct window *w;
3007 register int count = specpdl_ptr - specpdl;
3008
3009 window = Fother_window_for_scrolling ();
3010
7ab12479 3011 w = XWINDOW (window);
2f787aa3
KH
3012 defalt = window_internal_height (w) - next_screen_context_lines;
3013 if (defalt < 1) defalt = 1;
7ab12479
JB
3014
3015 /* Don't screw up if window_scroll gets an error. */
3016 record_unwind_protect (save_excursion_restore, save_excursion_save ());
3017
3018 Fset_buffer (w->buffer);
3019 SET_PT (marker_position (w->pointm));
3020
413430c5 3021 if (NILP (arg))
101d1605 3022 window_scroll (window, defalt, 1, 1);
413430c5 3023 else if (EQ (arg, Qminus))
101d1605 3024 window_scroll (window, -defalt, 1, 1);
7ab12479
JB
3025 else
3026 {
413430c5
EN
3027 if (CONSP (arg))
3028 arg = Fcar (arg);
3029 CHECK_NUMBER (arg, 0);
101d1605 3030 window_scroll (window, XINT (arg), 0, 1);
7ab12479
JB
3031 }
3032
5ce7b543 3033 Fset_marker (w->pointm, make_number (PT), Qnil);
f4e7b2c2 3034 unbind_to (count, Qnil);
7ab12479
JB
3035
3036 return Qnil;
3037}
3038\f
644b477c 3039DEFUN ("scroll-left", Fscroll_left, Sscroll_left, 0, 1, "P",
7ab12479
JB
3040 "Scroll selected window display ARG columns left.\n\
3041Default for ARG is window width minus 2.")
3042 (arg)
3043 register Lisp_Object arg;
3044{
3045
265a9e55 3046 if (NILP (arg))
d834a2e9 3047 XSETFASTINT (arg, window_internal_width (XWINDOW (selected_window)) - 2);
7ab12479
JB
3048 else
3049 arg = Fprefix_numeric_value (arg);
3050
3051 return
3052 Fset_window_hscroll (selected_window,
3053 make_number (XINT (XWINDOW (selected_window)->hscroll)
3054 + XINT (arg)));
3055}
3056
644b477c 3057DEFUN ("scroll-right", Fscroll_right, Sscroll_right, 0, 1, "P",
7ab12479
JB
3058 "Scroll selected window display ARG columns right.\n\
3059Default for ARG is window width minus 2.")
3060 (arg)
3061 register Lisp_Object arg;
3062{
265a9e55 3063 if (NILP (arg))
d834a2e9 3064 XSETFASTINT (arg, window_internal_width (XWINDOW (selected_window)) - 2);
7ab12479
JB
3065 else
3066 arg = Fprefix_numeric_value (arg);
3067
3068 return
3069 Fset_window_hscroll (selected_window,
3070 make_number (XINT (XWINDOW (selected_window)->hscroll)
3071 - XINT (arg)));
3072}
3073
3074DEFUN ("recenter", Frecenter, Srecenter, 0, 1, "P",
44fa5b1e 3075 "Center point in window and redisplay frame. With ARG, put point on line ARG.\n\
7ab12479 3076The desired position of point is always relative to the current window.\n\
44fa5b1e 3077Just C-u as prefix means put point in the center of the window.\n\
413430c5 3078If ARG is omitted or nil, erases the entire frame and then\n\
44fa5b1e 3079redraws with point in the center of the current window.")
413430c5
EN
3080 (arg)
3081 register Lisp_Object arg;
7ab12479
JB
3082{
3083 register struct window *w = XWINDOW (selected_window);
3084 register int ht = window_internal_height (w);
113d9015 3085 struct position pos;
7ab12479 3086
413430c5 3087 if (NILP (arg))
7ab12479 3088 {
44fa5b1e 3089 extern int frame_garbaged;
7ab12479 3090
44fa5b1e 3091 SET_FRAME_GARBAGED (XFRAME (WINDOW_FRAME (w)));
413430c5 3092 XSETFASTINT (arg, ht / 2);
7ab12479 3093 }
413430c5 3094 else if (CONSP (arg)) /* Just C-u. */
7ab12479 3095 {
413430c5 3096 XSETFASTINT (arg, ht / 2);
7ab12479
JB
3097 }
3098 else
3099 {
413430c5
EN
3100 arg = Fprefix_numeric_value (arg);
3101 CHECK_NUMBER (arg, 0);
7ab12479
JB
3102 }
3103
413430c5
EN
3104 if (XINT (arg) < 0)
3105 XSETINT (arg, XINT (arg) + ht);
7ab12479 3106
6ec8bbd2 3107 pos = *vmotion (PT, - XINT (arg), w);
7ab12479 3108
113d9015
KH
3109 Fset_marker (w->start, make_number (pos.bufpos), w->buffer);
3110 w->start_at_line_beg = ((pos.bufpos == BEGV
5a255667 3111 || FETCH_BYTE (pos.bufpos - 1) == '\n')
113d9015 3112 ? Qt : Qnil);
7ab12479
JB
3113 w->force_start = Qt;
3114
3115 return Qnil;
3116}
3117\f
3118DEFUN ("move-to-window-line", Fmove_to_window_line, Smove_to_window_line,
3119 1, 1, "P",
3120 "Position point relative to window.\n\
19e3bf0a 3121With no argument, position point at center of window.\n\
44fa5b1e 3122An argument specifies frame line; zero means top of window,\n\
7ab12479
JB
3123negative means relative to bottom of window.")
3124 (arg)
3125 register Lisp_Object arg;
3126{
3127 register struct window *w = XWINDOW (selected_window);
3128 register int height = window_internal_height (w);
3129 register int start;
540b6aa0 3130 Lisp_Object window;
7ab12479 3131
265a9e55 3132 if (NILP (arg))
d834a2e9 3133 XSETFASTINT (arg, height / 2);
7ab12479
JB
3134 else
3135 {
3136 arg = Fprefix_numeric_value (arg);
3137 if (XINT (arg) < 0)
3138 XSETINT (arg, XINT (arg) + height);
3139 }
3140
3141 start = marker_position (w->start);
74112613 3142 XSETWINDOW (window, w);
7ab12479
JB
3143 if (start < BEGV || start > ZV)
3144 {
cd2be1dd 3145 Fvertical_motion (make_number (- (height / 2)), window);
5ce7b543 3146 Fset_marker (w->start, make_number (PT), w->buffer);
7ab12479
JB
3147 w->start_at_line_beg = Fbolp ();
3148 w->force_start = Qt;
3149 }
3150 else
3151 SET_PT (start);
3152
540b6aa0 3153 return Fvertical_motion (arg, window);
7ab12479
JB
3154}
3155\f
3156struct save_window_data
3157 {
f5ccc0cc 3158 EMACS_INT size_from_Lisp_Vector_struct;
7ab12479 3159 struct Lisp_Vector *next_from_Lisp_Vector_struct;
8f6ea2e9 3160 Lisp_Object frame_width, frame_height, frame_menu_bar_lines;
bdc727bf 3161 Lisp_Object selected_frame;
7ab12479
JB
3162 Lisp_Object current_window;
3163 Lisp_Object current_buffer;
3164 Lisp_Object minibuf_scroll_window;
3165 Lisp_Object root_window;
bdc727bf 3166 Lisp_Object focus_frame;
756b6edc
RS
3167 /* Record the values of window-min-width and window-min-height
3168 so that window sizes remain consistent with them. */
3169 Lisp_Object min_width, min_height;
7ab12479
JB
3170 /* A vector, interpreted as a struct saved_window */
3171 Lisp_Object saved_windows;
3172 };
ff06df24 3173
7ab12479
JB
3174/* This is saved as a Lisp_Vector */
3175struct saved_window
3176 {
3177 /* these first two must agree with struct Lisp_Vector in lisp.h */
f5ccc0cc 3178 EMACS_INT size_from_Lisp_Vector_struct;
7ab12479
JB
3179 struct Lisp_Vector *next_from_Lisp_Vector_struct;
3180
3181 Lisp_Object window;
3182 Lisp_Object buffer, start, pointm, mark;
3183 Lisp_Object left, top, width, height, hscroll;
3184 Lisp_Object parent, prev;
3185 Lisp_Object start_at_line_beg;
3186 Lisp_Object display_table;
3187 };
3188#define SAVED_WINDOW_VECTOR_SIZE 14 /* Arg to Fmake_vector */
3189
3190#define SAVED_WINDOW_N(swv,n) \
3191 ((struct saved_window *) (XVECTOR ((swv)->contents[(n)])))
3192
3193DEFUN ("window-configuration-p", Fwindow_configuration_p, Swindow_configuration_p, 1, 1, 0,
5c4d25a6 3194 "T if OBJECT is a window-configuration object.")
413430c5
EN
3195 (object)
3196 Lisp_Object object;
7ab12479 3197{
413430c5 3198 if (WINDOW_CONFIGURATIONP (object))
7ab12479
JB
3199 return Qt;
3200 return Qnil;
3201}
3202
3203
d5b2799e
RS
3204DEFUN ("set-window-configuration", Fset_window_configuration,
3205 Sset_window_configuration, 1, 1, 0,
7ab12479
JB
3206 "Set the configuration of windows and buffers as specified by CONFIGURATION.\n\
3207CONFIGURATION must be a value previously returned\n\
3208by `current-window-configuration' (which see).")
2f83aebe
JB
3209 (configuration)
3210 Lisp_Object configuration;
7ab12479 3211{
7ab12479
JB
3212 register struct save_window_data *data;
3213 struct Lisp_Vector *saved_windows;
7ab12479 3214 Lisp_Object new_current_buffer;
fd482be5 3215 Lisp_Object frame;
44fa5b1e 3216 FRAME_PTR f;
d2b35234 3217 int old_point = -1;
7ab12479 3218
017b2bad 3219 while (!WINDOW_CONFIGURATIONP (configuration))
7ab12479 3220 {
2f83aebe
JB
3221 configuration = wrong_type_argument (intern ("window-configuration-p"),
3222 configuration);
7ab12479
JB
3223 }
3224
2f83aebe 3225 data = (struct save_window_data *) XVECTOR (configuration);
7ab12479
JB
3226 saved_windows = XVECTOR (data->saved_windows);
3227
7ab12479 3228 new_current_buffer = data->current_buffer;
265a9e55 3229 if (NILP (XBUFFER (new_current_buffer)->name))
7ab12479 3230 new_current_buffer = Qnil;
d2b35234
RS
3231 else
3232 {
3233 if (XBUFFER (new_current_buffer) == current_buffer)
3234 old_point = PT;
3235 }
7ab12479 3236
fd482be5
JB
3237 frame = XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame;
3238 f = XFRAME (frame);
9ace597f 3239
fd482be5
JB
3240 /* If f is a dead frame, don't bother rebuilding its window tree.
3241 However, there is other stuff we should still try to do below. */
3242 if (FRAME_LIVE_P (f))
7ab12479 3243 {
fd482be5
JB
3244 register struct window *w;
3245 register struct saved_window *p;
3246 int k;
3247
3248 /* If the frame has been resized since this window configuration was
3249 made, we change the frame to the size specified in the
3250 configuration, restore the configuration, and then resize it
3251 back. We keep track of the prevailing height in these variables. */
3252 int previous_frame_height = FRAME_HEIGHT (f);
3253 int previous_frame_width = FRAME_WIDTH (f);
8f6ea2e9 3254 int previous_frame_menu_bar_lines = FRAME_MENU_BAR_LINES (f);
fd482be5 3255
d2b35234
RS
3256 /* The mouse highlighting code could get screwed up
3257 if it runs during this. */
3258 BLOCK_INPUT;
3259
fd482be5
JB
3260 if (XFASTINT (data->frame_height) != previous_frame_height
3261 || XFASTINT (data->frame_width) != previous_frame_width)
3262 change_frame_size (f, data->frame_height, data->frame_width, 0, 0);
e3678b64 3263#if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
8f6ea2e9
KH
3264 if (XFASTINT (data->frame_menu_bar_lines)
3265 != previous_frame_menu_bar_lines)
3266 x_set_menu_bar_lines (f, data->frame_menu_bar_lines, 0);
217f2871 3267#endif
fd482be5
JB
3268
3269 windows_or_buffers_changed++;
29aeee73 3270 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
fd482be5 3271
756b6edc
RS
3272 /* Temporarily avoid any problems with windows that are smaller
3273 than they are supposed to be. */
3274 window_min_height = 1;
3275 window_min_width = 1;
3276
fd482be5
JB
3277 /* Kludge Alert!
3278 Mark all windows now on frame as "deleted".
3279 Restoring the new configuration "undeletes" any that are in it.
37962e60 3280
fd482be5
JB
3281 Save their current buffers in their height fields, since we may
3282 need it later, if a buffer saved in the configuration is now
3283 dead. */
3284 delete_all_subwindows (XWINDOW (FRAME_ROOT_WINDOW (f)));
3285
3286 for (k = 0; k < saved_windows->size; k++)
3287 {
3288 p = SAVED_WINDOW_N (saved_windows, k);
3289 w = XWINDOW (p->window);
3290 w->next = Qnil;
7ab12479 3291
fd482be5
JB
3292 if (!NILP (p->parent))
3293 w->parent = SAVED_WINDOW_N (saved_windows,
3294 XFASTINT (p->parent))->window;
3295 else
3296 w->parent = Qnil;
7ab12479 3297
fd482be5 3298 if (!NILP (p->prev))
7ab12479 3299 {
fd482be5
JB
3300 w->prev = SAVED_WINDOW_N (saved_windows,
3301 XFASTINT (p->prev))->window;
3302 XWINDOW (w->prev)->next = p->window;
3303 }
3304 else
3305 {
3306 w->prev = Qnil;
3307 if (!NILP (w->parent))
3308 {
3309 if (EQ (p->width, XWINDOW (w->parent)->width))
3310 {
3311 XWINDOW (w->parent)->vchild = p->window;
3312 XWINDOW (w->parent)->hchild = Qnil;
3313 }
3314 else
3315 {
3316 XWINDOW (w->parent)->hchild = p->window;
3317 XWINDOW (w->parent)->vchild = Qnil;
3318 }
3319 }
3320 }
3321
3322 /* If we squirreled away the buffer in the window's height,
3323 restore it now. */
017b2bad 3324 if (BUFFERP (w->height))
fd482be5
JB
3325 w->buffer = w->height;
3326 w->left = p->left;
3327 w->top = p->top;
3328 w->width = p->width;
3329 w->height = p->height;
3330 w->hscroll = p->hscroll;
3331 w->display_table = p->display_table;
d834a2e9 3332 XSETFASTINT (w->last_modified, 0);
3cd21523 3333 XSETFASTINT (w->last_overlay_modified, 0);
fd482be5
JB
3334
3335 /* Reinstall the saved buffer and pointers into it. */
3336 if (NILP (p->buffer))
3337 w->buffer = p->buffer;
3338 else
3339 {
3340 if (!NILP (XBUFFER (p->buffer)->name))
3341 /* If saved buffer is alive, install it. */
3342 {
3343 w->buffer = p->buffer;
3344 w->start_at_line_beg = p->start_at_line_beg;
3345 set_marker_restricted (w->start,
3346 Fmarker_position (p->start),
3347 w->buffer);
3348 set_marker_restricted (w->pointm,
3349 Fmarker_position (p->pointm),
3350 w->buffer);
3351 Fset_marker (XBUFFER (w->buffer)->mark,
3352 Fmarker_position (p->mark), w->buffer);
3353
3354 /* As documented in Fcurrent_window_configuration, don't
3355 save the location of point in the buffer which was current
3356 when the window configuration was recorded. */
6b54027b
RS
3357 if (!EQ (p->buffer, new_current_buffer)
3358 && XBUFFER (p->buffer) == current_buffer)
fd482be5
JB
3359 Fgoto_char (w->pointm);
3360 }
52a68e98
RS
3361 else if (NILP (w->buffer) || NILP (XBUFFER (w->buffer)->name))
3362 /* Else unless window has a live buffer, get one. */
7ab12479 3363 {
fd482be5
JB
3364 w->buffer = Fcdr (Fcar (Vbuffer_alist));
3365 /* This will set the markers to beginning of visible
3366 range. */
3367 set_marker_restricted (w->start, make_number (0), w->buffer);
3368 set_marker_restricted (w->pointm, make_number (0),w->buffer);
3369 w->start_at_line_beg = Qt;
7ab12479
JB
3370 }
3371 else
fd482be5 3372 /* Keeping window's old buffer; make sure the markers
52a68e98 3373 are real. */
7ab12479 3374 {
fd482be5
JB
3375 /* Set window markers at start of visible range. */
3376 if (XMARKER (w->start)->buffer == 0)
3377 set_marker_restricted (w->start, make_number (0),
3378 w->buffer);
3379 if (XMARKER (w->pointm)->buffer == 0)
3380 set_marker_restricted (w->pointm,
3381 (make_number
3382 (BUF_PT (XBUFFER (w->buffer)))),
3383 w->buffer);
3384 w->start_at_line_beg = Qt;
7ab12479
JB
3385 }
3386 }
3387 }
9ace597f 3388
fd482be5
JB
3389 FRAME_ROOT_WINDOW (f) = data->root_window;
3390 Fselect_window (data->current_window);
396a830c
RS
3391 XBUFFER (XWINDOW (selected_window)->buffer)->last_selected_window
3392 = selected_window;
7ab12479 3393
db269683 3394 if (NILP (data->focus_frame)
017b2bad 3395 || (FRAMEP (data->focus_frame)
db269683
JB
3396 && FRAME_LIVE_P (XFRAME (data->focus_frame))))
3397 Fredirect_frame_focus (frame, data->focus_frame);
7ab12479 3398
fd482be5
JB
3399#if 0 /* I don't understand why this is needed, and it causes problems
3400 when the frame's old selected window has been deleted. */
e4e59717 3401 if (f != selected_frame && FRAME_WINDOW_P (f))
9a7c6fc3
RS
3402 do_switch_frame (WINDOW_FRAME (XWINDOW (data->root_window)),
3403 Qnil, 0);
fd482be5
JB
3404#endif
3405
3406 /* Set the screen height to the value it had before this function. */
3407 if (previous_frame_height != FRAME_HEIGHT (f)
3408 || previous_frame_width != FRAME_WIDTH (f))
3409 change_frame_size (f, previous_frame_height, previous_frame_width,
3410 0, 0);
e3678b64 3411#if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
8f6ea2e9
KH
3412 if (previous_frame_menu_bar_lines != FRAME_MENU_BAR_LINES (f))
3413 x_set_menu_bar_lines (f, previous_frame_menu_bar_lines, 0);
217f2871 3414#endif
d2b35234
RS
3415
3416 UNBLOCK_INPUT;
fd482be5 3417 }
bdc727bf 3418
756b6edc
RS
3419 /* Restore the minimum heights recorded in the configuration. */
3420 window_min_height = XINT (data->min_height);
3421 window_min_width = XINT (data->min_width);
3422
bdc727bf 3423 /* Fselect_window will have made f the selected frame, so we
d5b2799e 3424 reselect the proper frame here. Fhandle_switch_frame will change the
bdc727bf
JB
3425 selected window too, but that doesn't make the call to
3426 Fselect_window above totally superfluous; it still sets f's
3427 selected window. */
fd482be5 3428 if (FRAME_LIVE_P (XFRAME (data->selected_frame)))
9a7c6fc3 3429 do_switch_frame (data->selected_frame, Qnil, 0);
bdc727bf
JB
3430
3431 if (!NILP (new_current_buffer))
d2b35234
RS
3432 {
3433 Fset_buffer (new_current_buffer);
3434
3435 /* If the buffer that is current now is the same
3436 that was current before setting the window configuration,
3437 don't alter its PT. */
3438 if (old_point >= 0)
3439 SET_PT (old_point);
3440 }
bdc727bf 3441
7ab12479 3442 Vminibuf_scroll_window = data->minibuf_scroll_window;
543f5fb1
RS
3443
3444 if (! NILP (Vwindow_configuration_change_hook)
3445 && ! NILP (Vrun_hooks))
3446 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
3447
7ab12479
JB
3448 return (Qnil);
3449}
3450
44fa5b1e 3451/* Mark all windows now on frame as deleted
7ab12479
JB
3452 by setting their buffers to nil. */
3453
fd482be5 3454void
7ab12479
JB
3455delete_all_subwindows (w)
3456 register struct window *w;
3457{
265a9e55 3458 if (!NILP (w->next))
7ab12479 3459 delete_all_subwindows (XWINDOW (w->next));
265a9e55 3460 if (!NILP (w->vchild))
7ab12479 3461 delete_all_subwindows (XWINDOW (w->vchild));
265a9e55 3462 if (!NILP (w->hchild))
7ab12479 3463 delete_all_subwindows (XWINDOW (w->hchild));
605be8af
JB
3464
3465 w->height = w->buffer; /* See Fset_window_configuration for excuse. */
3466
86e48436
RS
3467 if (!NILP (w->buffer))
3468 unshow_buffer (w);
3469
605be8af
JB
3470 /* We set all three of these fields to nil, to make sure that we can
3471 distinguish this dead window from any live window. Live leaf
3472 windows will have buffer set, and combination windows will have
3473 vchild or hchild set. */
3474 w->buffer = Qnil;
3475 w->vchild = Qnil;
3476 w->hchild = Qnil;
7ab12479
JB
3477}
3478\f
3479static int
3480count_windows (window)
3481 register struct window *window;
3482{
3483 register int count = 1;
265a9e55 3484 if (!NILP (window->next))
7ab12479 3485 count += count_windows (XWINDOW (window->next));
265a9e55 3486 if (!NILP (window->vchild))
7ab12479 3487 count += count_windows (XWINDOW (window->vchild));
265a9e55 3488 if (!NILP (window->hchild))
7ab12479
JB
3489 count += count_windows (XWINDOW (window->hchild));
3490 return count;
3491}
3492
3493static int
3494save_window_save (window, vector, i)
3495 Lisp_Object window;
3496 struct Lisp_Vector *vector;
3497 int i;
3498{
3499 register struct saved_window *p;
3500 register struct window *w;
3501 register Lisp_Object tem;
3502
265a9e55 3503 for (;!NILP (window); window = w->next)
7ab12479
JB
3504 {
3505 p = SAVED_WINDOW_N (vector, i);
3506 w = XWINDOW (window);
3507
d834a2e9 3508 XSETFASTINT (w->temslot, i++);
7ab12479
JB
3509 p->window = window;
3510 p->buffer = w->buffer;
3511 p->left = w->left;
3512 p->top = w->top;
3513 p->width = w->width;
3514 p->height = w->height;
3515 p->hscroll = w->hscroll;
3516 p->display_table = w->display_table;
265a9e55 3517 if (!NILP (w->buffer))
7ab12479
JB
3518 {
3519 /* Save w's value of point in the window configuration.
3520 If w is the selected window, then get the value of point
3521 from the buffer; pointm is garbage in the selected window. */
3522 if (EQ (window, selected_window))
3523 {
3524 p->pointm = Fmake_marker ();
3525 Fset_marker (p->pointm, BUF_PT (XBUFFER (w->buffer)),
3526 w->buffer);
3527 }
3528 else
eeb82665 3529 p->pointm = Fcopy_marker (w->pointm, Qnil);
7ab12479 3530
eeb82665 3531 p->start = Fcopy_marker (w->start, Qnil);
7ab12479
JB
3532 p->start_at_line_beg = w->start_at_line_beg;
3533
3534 tem = XBUFFER (w->buffer)->mark;
eeb82665 3535 p->mark = Fcopy_marker (tem, Qnil);
7ab12479
JB
3536 }
3537 else
3538 {
3539 p->pointm = Qnil;
3540 p->start = Qnil;
3541 p->mark = Qnil;
3542 p->start_at_line_beg = Qnil;
3543 }
3544
265a9e55 3545 if (NILP (w->parent))
7ab12479
JB
3546 p->parent = Qnil;
3547 else
3548 p->parent = XWINDOW (w->parent)->temslot;
3549
265a9e55 3550 if (NILP (w->prev))
7ab12479
JB
3551 p->prev = Qnil;
3552 else
3553 p->prev = XWINDOW (w->prev)->temslot;
3554
265a9e55 3555 if (!NILP (w->vchild))
7ab12479 3556 i = save_window_save (w->vchild, vector, i);
265a9e55 3557 if (!NILP (w->hchild))
7ab12479
JB
3558 i = save_window_save (w->hchild, vector, i);
3559 }
3560
3561 return i;
3562}
3563
a0d76c27
EN
3564DEFUN ("current-window-configuration", Fcurrent_window_configuration,
3565 Scurrent_window_configuration, 0, 1, 0,
44fa5b1e
JB
3566 "Return an object representing the current window configuration of FRAME.\n\
3567If FRAME is nil or omitted, use the selected frame.\n\
7ab12479
JB
3568This describes the number of windows, their sizes and current buffers,\n\
3569and for each displayed buffer, where display starts, and the positions of\n\
3570point and mark. An exception is made for point in the current buffer:\n\
bdc727bf
JB
3571its value is -not- saved.\n\
3572This also records the currently selected frame, and FRAME's focus\n\
3573redirection (see `redirect-frame-focus').")
44fa5b1e
JB
3574 (frame)
3575 Lisp_Object frame;
7ab12479
JB
3576{
3577 register Lisp_Object tem;
3578 register int n_windows;
3579 register struct save_window_data *data;
da2792e0 3580 register struct Lisp_Vector *vec;
7ab12479 3581 register int i;
44fa5b1e 3582 FRAME_PTR f;
43bad991 3583
44fa5b1e
JB
3584 if (NILP (frame))
3585 f = selected_frame;
43bad991
JB
3586 else
3587 {
44fa5b1e
JB
3588 CHECK_LIVE_FRAME (frame, 0);
3589 f = XFRAME (frame);
43bad991 3590 }
7ab12479 3591
44fa5b1e 3592 n_windows = count_windows (XWINDOW (FRAME_ROOT_WINDOW (f)));
da2792e0
KH
3593 vec = allocate_vectorlike (VECSIZE (struct save_window_data));
3594 for (i = 0; i < VECSIZE (struct save_window_data); i++)
3595 vec->contents[i] = Qnil;
3596 vec->size = VECSIZE (struct save_window_data);
3597 data = (struct save_window_data *)vec;
3598
d834a2e9
KH
3599 XSETFASTINT (data->frame_width, FRAME_WIDTH (f));
3600 XSETFASTINT (data->frame_height, FRAME_HEIGHT (f));
3601 XSETFASTINT (data->frame_menu_bar_lines, FRAME_MENU_BAR_LINES (f));
74112613 3602 XSETFRAME (data->selected_frame, selected_frame);
44fa5b1e 3603 data->current_window = FRAME_SELECTED_WINDOW (f);
74112613 3604 XSETBUFFER (data->current_buffer, current_buffer);
7ab12479 3605 data->minibuf_scroll_window = Vminibuf_scroll_window;
44fa5b1e 3606 data->root_window = FRAME_ROOT_WINDOW (f);
bdc727bf 3607 data->focus_frame = FRAME_FOCUS_FRAME (f);
74112613
KH
3608 XSETINT (data->min_height, window_min_height);
3609 XSETINT (data->min_width, window_min_width);
7ab12479
JB
3610 tem = Fmake_vector (make_number (n_windows), Qnil);
3611 data->saved_windows = tem;
3612 for (i = 0; i < n_windows; i++)
3613 XVECTOR (tem)->contents[i]
3614 = Fmake_vector (make_number (SAVED_WINDOW_VECTOR_SIZE), Qnil);
44fa5b1e 3615 save_window_save (FRAME_ROOT_WINDOW (f),
7ab12479 3616 XVECTOR (tem), 0);
74112613 3617 XSETWINDOW_CONFIGURATION (tem, data);
7ab12479
JB
3618 return (tem);
3619}
3620
3621DEFUN ("save-window-excursion", Fsave_window_excursion, Ssave_window_excursion,
3622 0, UNEVALLED, 0,
3623 "Execute body, preserving window sizes and contents.\n\
eb16ec06
RS
3624Restore which buffer appears in which window, where display starts,\n\
3625and the value of point and mark for each window.\n\
3626Also restore which buffer is current.\n\
3627But do not preserve point in the current buffer.\n\
7ab12479
JB
3628Does not restore the value of point in current buffer.")
3629 (args)
3630 Lisp_Object args;
3631{
3632 register Lisp_Object val;
3633 register int count = specpdl_ptr - specpdl;
3634
3635 record_unwind_protect (Fset_window_configuration,
43bad991 3636 Fcurrent_window_configuration (Qnil));
7ab12479
JB
3637 val = Fprogn (args);
3638 return unbind_to (count, val);
3639}
3640\f
3641init_window_once ()
3642{
44fa5b1e 3643 selected_frame = make_terminal_frame ();
bc6c324f 3644 XSETFRAME (Vterminal_frame, selected_frame);
44fa5b1e
JB
3645 minibuf_window = selected_frame->minibuffer_window;
3646 selected_window = selected_frame->selected_window;
3647 last_nonminibuf_frame = selected_frame;
5b03d3c0
RS
3648
3649 window_initialized = 1;
7ab12479
JB
3650}
3651
3652syms_of_window ()
3653{
543f5fb1
RS
3654 staticpro (&Qwindow_configuration_change_hook);
3655 Qwindow_configuration_change_hook
3656 = intern ("window-configuration-change-hook");
3657
7ab12479
JB
3658 Qwindowp = intern ("windowp");
3659 staticpro (&Qwindowp);
3660
806b4d9b
JB
3661 Qwindow_live_p = intern ("window-live-p");
3662 staticpro (&Qwindow_live_p);
605be8af 3663
2cccc823 3664 Qtemp_buffer_show_hook = intern ("temp-buffer-show-hook");
a58ec57d
RS
3665 staticpro (&Qtemp_buffer_show_hook);
3666
7ab12479
JB
3667 DEFVAR_LISP ("temp-buffer-show-function", &Vtemp_buffer_show_function,
3668 "Non-nil means call as function to display a help buffer.\n\
c3ef6b1d 3669The function is called with one argument, the buffer to be displayed.\n\
f52cca03
RS
3670Used by `with-output-to-temp-buffer'.\n\
3671If this function is used, then it must do the entire job of showing\n\
3672the buffer; `temp-buffer-show-hook' is not run unless this function runs it.");
7ab12479
JB
3673 Vtemp_buffer_show_function = Qnil;
3674
3675 DEFVAR_LISP ("display-buffer-function", &Vdisplay_buffer_function,
3676 "If non-nil, function to call to handle `display-buffer'.\n\
3677It will receive two args, the buffer and a flag which if non-nil means\n\
3678 that the currently selected window is not acceptable.\n\
3679Commands such as `switch-to-buffer-other-window' and `find-file-other-window'\n\
3680work using this function.");
3681 Vdisplay_buffer_function = Qnil;
3682
7ab12479
JB
3683 DEFVAR_LISP ("minibuffer-scroll-window", &Vminibuf_scroll_window,
3684 "Non-nil means it is the window that C-M-v in minibuffer should scroll.");
3685 Vminibuf_scroll_window = Qnil;
3686
3687 DEFVAR_LISP ("other-window-scroll-buffer", &Vother_window_scroll_buffer,
3688 "If non-nil, this is a buffer and \\[scroll-other-window] should scroll its window.");
3689 Vother_window_scroll_buffer = Qnil;
3690
44fa5b1e 3691 DEFVAR_BOOL ("pop-up-frames", &pop_up_frames,
700f75a4 3692 "*Non-nil means `display-buffer' should make a separate frame.");
44fa5b1e 3693 pop_up_frames = 0;
7ab12479 3694
44fa5b1e 3695 DEFVAR_LISP ("pop-up-frame-function", &Vpop_up_frame_function,
a90712c2 3696 "Function to call to handle automatic new frame creation.\n\
44fa5b1e 3697It is called with no arguments and should return a newly created frame.\n\
7ab12479 3698\n\
44fa5b1e
JB
3699A typical value might be `(lambda () (new-frame pop-up-frame-alist))'\n\
3700where `pop-up-frame-alist' would hold the default frame parameters.");
3701 Vpop_up_frame_function = Qnil;
7ab12479 3702
a90712c2
RS
3703 DEFVAR_LISP ("special-display-buffer-names", &Vspecial_display_buffer_names,
3704 "*List of buffer names that should have their own special frames.\n\
3705Displaying a buffer whose name is in this list makes a special frame for it\n\
524580a4 3706using `special-display-function'. See also `special-display-regexps'.\n\
3548e138 3707\n\
524580a4
RS
3708An element of the list can be a list instead of just a string.\n\
3709There are two ways to use a list as an element:\n\
3710 (BUFFER FRAME-PARAMETERS...) (BUFFER FUNCTION OTHER-ARGS...)\n\
3711In the first case, FRAME-PARAMETERS are used to create the frame.\n\
3712In the latter case, FUNCTION is called with BUFFER as the first argument,\n\
3713followed by OTHER-ARGS--it can display BUFFER in any way it likes.\n\
3714All this is done by the function found in `special-display-function'.");
a90712c2
RS
3715 Vspecial_display_buffer_names = Qnil;
3716
3717 DEFVAR_LISP ("special-display-regexps", &Vspecial_display_regexps,
3718 "*List of regexps saying which buffers should have their own special frames.\n\
3719If a buffer name matches one of these regexps, it gets its own frame.\n\
3720Displaying a buffer whose name is in this list makes a special frame for it\n\
0a952b57 3721using `special-display-function'.\n\
3548e138 3722\n\
524580a4
RS
3723An element of the list can be a list instead of just a string.\n\
3724There are two ways to use a list as an element:\n\
3725 (REGEXP FRAME-PARAMETERS...) (REGEXP FUNCTION OTHER-ARGS...)\n\
3726In the first case, FRAME-PARAMETERS are used to create the frame.\n\
3727In the latter case, FUNCTION is called with the buffer as first argument,\n\
3728followed by OTHER-ARGS--it can display the buffer in any way it likes.\n\
3729All this is done by the function found in `special-display-function'.");
a90712c2
RS
3730 Vspecial_display_regexps = Qnil;
3731
3732 DEFVAR_LISP ("special-display-function", &Vspecial_display_function,
3733 "Function to call to make a new frame for a special buffer.\n\
0a952b57
RS
3734It is called with two arguments, the buffer and optional buffer specific\n\
3735data, and should return a window displaying that buffer.\n\
a90712c2 3736The default value makes a separate frame for the buffer,\n\
bdd3a802 3737using `special-display-frame-alist' to specify the frame parameters.\n\
a90712c2
RS
3738\n\
3739A buffer is special if its is listed in `special-display-buffer-names'\n\
3740or matches a regexp in `special-display-regexps'.");
3741 Vspecial_display_function = Qnil;
3742
855d8627
RS
3743 DEFVAR_LISP ("same-window-buffer-names", &Vsame_window_buffer_names,
3744 "*List of buffer names that should appear in the selected window.\n\
3745Displaying one of these buffers using `display-buffer' or `pop-to-buffer'\n\
3746switches to it in the selected window, rather than making it appear\n\
2e5ce1a0 3747in some other window.\n\
855d8627
RS
3748\n\
3749An element of the list can be a cons cell instead of just a string.\n\
3750Then the car must be a string, which specifies the buffer name.\n\
3751This is for compatibility with `special-display-buffer-names';\n\
3752the cdr of the cons cell is ignored.\n\
3753\n\
3754See also `same-window-regexps'.");
3755 Vsame_window_buffer_names = Qnil;
3756
3757 DEFVAR_LISP ("same-window-regexps", &Vsame_window_regexps,
3758 "*List of regexps saying which buffers should appear in the selected window.\n\
3759If a buffer name matches one of these regexps, then displaying it\n\
3760using `display-buffer' or `pop-to-buffer' switches to it\n\
3761in the selected window, rather than making it appear in some other window.\n\
3762\n\
3763An element of the list can be a cons cell instead of just a string.\n\
3764Then the car must be a string, which specifies the buffer name.\n\
3765This is for compatibility with `special-display-buffer-names';\n\
3766the cdr of the cons cell is ignored.\n\
3767\n\
3768See also `same-window-buffer-names'.");
3769 Vsame_window_regexps = Qnil;
3770
7ab12479
JB
3771 DEFVAR_BOOL ("pop-up-windows", &pop_up_windows,
3772 "*Non-nil means display-buffer should make new windows.");
3773 pop_up_windows = 1;
3774
3775 DEFVAR_INT ("next-screen-context-lines", &next_screen_context_lines,
3776 "*Number of lines of continuity when scrolling by screenfuls.");
3777 next_screen_context_lines = 2;
3778
3779 DEFVAR_INT ("split-height-threshold", &split_height_threshold,
3780 "*display-buffer would prefer to split the largest window if this large.\n\
3781If there is only one window, it is split regardless of this value.");
3782 split_height_threshold = 500;
3783
3784 DEFVAR_INT ("window-min-height", &window_min_height,
3785 "*Delete any window less than this tall (including its mode line).");
3786 window_min_height = 4;
3787
3788 DEFVAR_INT ("window-min-width", &window_min_width,
3789 "*Delete any window less than this wide.");
3790 window_min_width = 10;
3791
9317a85d
RS
3792 DEFVAR_BOOL ("scroll-preserve-screen-position",
3793 &scroll_preserve_screen_position,
3794 "*Nonzero means scroll commands move point to keep its screen line unchanged.");
3795 scroll_preserve_screen_position = 0;
3796
543f5fb1
RS
3797 DEFVAR_LISP ("window-configuration-change-hook",
3798 &Vwindow_configuration_change_hook,
3799 "Functions to call when window configuration changes.\n\
3800The selected frae is the one whose configuration has changed.");
3801 Vwindow_configuration_change_hook = Qnil;
3802
7ab12479
JB
3803 defsubr (&Sselected_window);
3804 defsubr (&Sminibuffer_window);
3805 defsubr (&Swindow_minibuffer_p);
3806 defsubr (&Swindowp);
806b4d9b 3807 defsubr (&Swindow_live_p);
7ab12479
JB
3808 defsubr (&Spos_visible_in_window_p);
3809 defsubr (&Swindow_buffer);
3810 defsubr (&Swindow_height);
3811 defsubr (&Swindow_width);
3812 defsubr (&Swindow_hscroll);
3813 defsubr (&Sset_window_hscroll);
190eb263
RS
3814 defsubr (&Swindow_redisplay_end_trigger);
3815 defsubr (&Sset_window_redisplay_end_trigger);
7ab12479 3816 defsubr (&Swindow_edges);
d5783c40
JB
3817 defsubr (&Scoordinates_in_window_p);
3818 defsubr (&Swindow_at);
7ab12479
JB
3819 defsubr (&Swindow_point);
3820 defsubr (&Swindow_start);
3821 defsubr (&Swindow_end);
3822 defsubr (&Sset_window_point);
3823 defsubr (&Sset_window_start);
3824 defsubr (&Swindow_dedicated_p);
d207b766 3825 defsubr (&Sset_window_dedicated_p);
7ab12479
JB
3826 defsubr (&Swindow_display_table);
3827 defsubr (&Sset_window_display_table);
3828 defsubr (&Snext_window);
3829 defsubr (&Sprevious_window);
3830 defsubr (&Sother_window);
3831 defsubr (&Sget_lru_window);
3832 defsubr (&Sget_largest_window);
3833 defsubr (&Sget_buffer_window);
3834 defsubr (&Sdelete_other_windows);
3835 defsubr (&Sdelete_windows_on);
3836 defsubr (&Sreplace_buffer_in_windows);
3837 defsubr (&Sdelete_window);
3838 defsubr (&Sset_window_buffer);
3839 defsubr (&Sselect_window);
4628f7a4
EN
3840 defsubr (&Sspecial_display_p);
3841 defsubr (&Ssame_window_p);
7ab12479
JB
3842 defsubr (&Sdisplay_buffer);
3843 defsubr (&Ssplit_window);
3844 defsubr (&Senlarge_window);
3845 defsubr (&Sshrink_window);
3846 defsubr (&Sscroll_up);
3847 defsubr (&Sscroll_down);
3848 defsubr (&Sscroll_left);
3849 defsubr (&Sscroll_right);
ccd0664b 3850 defsubr (&Sother_window_for_scrolling);
7ab12479
JB
3851 defsubr (&Sscroll_other_window);
3852 defsubr (&Srecenter);
3853 defsubr (&Smove_to_window_line);
3854 defsubr (&Swindow_configuration_p);
3855 defsubr (&Sset_window_configuration);
3856 defsubr (&Scurrent_window_configuration);
3857 defsubr (&Ssave_window_excursion);
3858}
3859
3860keys_of_window ()
3861{
3862 initial_define_key (control_x_map, '1', "delete-other-windows");
3863 initial_define_key (control_x_map, '2', "split-window");
3864 initial_define_key (control_x_map, '0', "delete-window");
3865 initial_define_key (control_x_map, 'o', "other-window");
3866 initial_define_key (control_x_map, '^', "enlarge-window");
3867 initial_define_key (control_x_map, '<', "scroll-left");
3868 initial_define_key (control_x_map, '>', "scroll-right");
3869
3870 initial_define_key (global_map, Ctl ('V'), "scroll-up");
3871 initial_define_key (meta_map, Ctl ('V'), "scroll-other-window");
3872 initial_define_key (meta_map, 'v', "scroll-down");
3873
3874 initial_define_key (global_map, Ctl('L'), "recenter");
3875 initial_define_key (meta_map, 'r', "move-to-window-line");
3876}