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