(Fdisplay_buffer): New arg FRAME.
[bpt/emacs.git] / src / window.c
1 /* Window creation, deletion and examination for GNU Emacs.
2 Does not include redisplay.
3 Copyright (C) 1985,86,87,93,94,95,96,97,1998 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22 #include <config.h>
23 #include "lisp.h"
24 #include "buffer.h"
25 #include "frame.h"
26 #include "window.h"
27 #include "commands.h"
28 #include "indent.h"
29 #include "termchar.h"
30 #include "disptab.h"
31 #include "keyboard.h"
32 #include "blockinput.h"
33
34 Lisp_Object Qwindowp, Qwindow_live_p;
35
36 static struct window *decode_window P_ ((Lisp_Object));
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
44 FRAME_SELECTED_WINDOW (selected_frame). */
45
46 Lisp_Object selected_window;
47
48 /* The minibuffer window of the selected frame.
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. */
52 Lisp_Object minibuf_window;
53
54 /* Non-nil means it is the window for C-M-v to scroll
55 when the minibuffer is selected. */
56 Lisp_Object Vminibuf_scroll_window;
57
58 /* Non-nil means this is the buffer whose window C-M-v should scroll. */
59 Lisp_Object Vother_window_scroll_buffer;
60
61 /* Non-nil means it's function to call to display temp buffers. */
62 Lisp_Object Vtemp_buffer_show_function;
63
64 /* If a window gets smaller than either of these, it is removed. */
65 int window_min_height;
66 int window_min_width;
67
68 /* Nonzero implies Fdisplay_buffer should create windows. */
69 int pop_up_windows;
70
71 /* Nonzero implies make new frames for Fdisplay_buffer. */
72 int pop_up_frames;
73
74 /* Non-nil means use this function instead of default */
75 Lisp_Object Vpop_up_frame_function;
76
77 /* Function to call to handle Fdisplay_buffer. */
78 Lisp_Object Vdisplay_buffer_function;
79
80 /* List of buffer *names* for buffers that should have their own frames. */
81 Lisp_Object Vspecial_display_buffer_names;
82
83 /* List of regexps for buffer names that should have their own frames. */
84 Lisp_Object Vspecial_display_regexps;
85
86 /* Function to pop up a special frame. */
87 Lisp_Object Vspecial_display_function;
88
89 /* List of buffer *names* for buffers to appear in selected window. */
90 Lisp_Object Vsame_window_buffer_names;
91
92 /* List of regexps for buffer names to appear in selected window. */
93 Lisp_Object Vsame_window_regexps;
94
95 /* Hook run at end of temp_output_buffer_show. */
96 Lisp_Object Qtemp_buffer_show_hook;
97
98 /* Fdisplay_buffer always splits the largest window
99 if that window is more than this high. */
100 int split_height_threshold;
101
102 /* Number of lines of continuity in scrolling by screenfuls. */
103 int next_screen_context_lines;
104
105 /* Incremented for each window created. */
106 static int sequence_number;
107
108 /* Nonzero after init_window_once has finished. */
109 static int window_initialized;
110
111 /* Hook to run when window config changes. */
112 Lisp_Object Qwindow_configuration_change_hook;
113 Lisp_Object Vwindow_configuration_change_hook;
114
115 /* Nonzero means scroll commands try to put point
116 at the same screen height as previously. */
117 static int scroll_preserve_screen_position;
118
119 /* Nonzero means we can split a frame even if it is "unsplittable". */
120 static int inhibit_frame_unsplittable;
121
122 #define min(a, b) ((a) < (b) ? (a) : (b))
123
124 extern int scroll_margin;
125
126 extern Lisp_Object Qwindow_scroll_functions, Vwindow_scroll_functions;
127 \f
128 DEFUN ("windowp", Fwindowp, Swindowp, 1, 1, 0,
129 "Returns t if OBJECT is a window.")
130 (object)
131 Lisp_Object object;
132 {
133 return WINDOWP (object) ? Qt : Qnil;
134 }
135
136 DEFUN ("window-live-p", Fwindow_live_p, Swindow_live_p, 1, 1, 0,
137 "Returns t if OBJECT is a window which is currently visible.")
138 (object)
139 Lisp_Object object;
140 {
141 return (WINDOWP (object) && ! NILP (XWINDOW (object)->buffer) ? Qt : Qnil);
142 }
143
144 Lisp_Object
145 make_window ()
146 {
147 Lisp_Object val;
148 register struct window *p;
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;
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);
165 p->start = Fmake_marker ();
166 p->pointm = Fmake_marker ();
167 XSETFASTINT (p->use_time, 0);
168 p->frame = Qnil;
169 p->display_table = Qnil;
170 p->dedicated = Qnil;
171 XSETWINDOW (val, p);
172 return val;
173 }
174
175 DEFUN ("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
182 DEFUN ("minibuffer-window", Fminibuffer_window, Sminibuffer_window, 0, 1, 0,
183 "Return the window used now for minibuffers.\n\
184 If the optional argument FRAME is specified, return the minibuffer window\n\
185 used by that frame.")
186 (frame)
187 Lisp_Object frame;
188 {
189 if (NILP (frame))
190 XSETFRAME (frame, selected_frame);
191 else
192 CHECK_LIVE_FRAME (frame, 0);
193
194 return FRAME_MINIBUF_WINDOW (XFRAME (frame));
195 }
196
197 DEFUN ("window-minibuffer-p", Fwindow_minibuffer_p, Swindow_minibuffer_p, 0, 1, 0,
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
206 DEFUN ("pos-visible-in-window-p", Fpos_visible_in_window_p,
207 Spos_visible_in_window_p, 0, 2, 0,
208 "Return t if position POS is currently on the frame in WINDOW.\n\
209 Returns nil if that position is scrolled vertically out of view.\n\
210 POS 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;
220 int hscroll;
221
222 if (NILP (pos))
223 posint = PT;
224 else
225 {
226 CHECK_NUMBER_COERCE_MARKER (pos, 0);
227 posint = XINT (pos);
228 }
229
230 w = decode_window (window);
231 top = marker_position (w->start);
232 hscroll = XINT (w->hscroll);
233
234 if (posint < top)
235 return Qnil;
236
237 height = XFASTINT (w->height) - ! MINI_WINDOW_P (w);
238
239 buf = XBUFFER (w->buffer);
240 if (XFASTINT (w->last_modified) >= BUF_MODIFF (buf)
241 && XFASTINT (w->last_overlay_modified) >= BUF_OVERLAY_MODIFF (buf))
242 {
243 /* If frame is up to date,
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 {
252 if (posint > BUF_ZV (buf))
253 return Qnil;
254
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
259 /* If that info is not correct, calculate afresh */
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. */
269 posval = *compute_motion (top, 0, (hscroll ? 1 - hscroll : 0), 0,
270 posint, height, - (1 << (BITS_PER_SHORT - 1)),
271 window_internal_width (w) - 1,
272 hscroll, 0, w);
273
274 return posval.vpos < height ? Qt : Qnil;
275 }
276 }
277 \f
278 static struct window *
279 decode_window (window)
280 register Lisp_Object window;
281 {
282 if (NILP (window))
283 return XWINDOW (selected_window);
284
285 CHECK_LIVE_WINDOW (window, 0);
286 return XWINDOW (window);
287 }
288
289 DEFUN ("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
297 DEFUN ("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
305 DEFUN ("window-width", Fwindow_width, Swindow_width, 0, 1, 0,
306 "Return the number of display columns in WINDOW.\n\
307 This is the width that is usable columns available for text in WINDOW.\n\
308 If you want to find out how many columns WINDOW takes up,\n\
309 use (let ((edges (window-edges))) (- (nth 2 edges) (nth 0 edges))).")
310 (window)
311 Lisp_Object window;
312 {
313 return make_number (window_internal_width (decode_window (window)));
314 }
315
316 DEFUN ("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
324 DEFUN ("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\
326 NCOL 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);
333 if (XINT (ncol) < 0) XSETFASTINT (ncol, 0);
334 w = decode_window (window);
335 if (XINT (w->hscroll) != XINT (ncol))
336 XBUFFER (w->buffer)->clip_changed = 1; /* Prevent redisplay shortcuts */
337 w->hscroll = ncol;
338 return ncol;
339 }
340
341 DEFUN ("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\
344 See `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
351 DEFUN ("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\
354 VALUE should be a buffer position (typically a marker) or nil.\n\
355 If it is a buffer position, then if redisplay in WINDOW reaches a position\n\
356 beyond VALUE, the functions in `redisplay-end-trigger-functions' are called\n\
357 with two arguments: WINDOW, and the end trigger value.\n\
358 Afterwards the end-trigger value is reset to nil.")
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
369 DEFUN ("window-edges", Fwindow_edges, Swindow_edges, 0, 1, 0,
370 "Return a list of the edge coordinates of WINDOW.\n\
371 \(LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at top left corner of frame.\n\
372 RIGHT is one more than the rightmost column used by WINDOW,\n\
373 and 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,
381 Fcons (make_number (WINDOW_RIGHT_EDGE (w)),
382 Fcons (make_number (XFASTINT (w->top)
383 + XFASTINT (w->height)),
384 Qnil))));
385 }
386
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. */
396 static int
397 coordinates_in_window (w, x, y)
398 register struct window *w;
399 register int *x, *y;
400 {
401 register int left = XINT (w->left);
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);
405 register int window_height = XINT (w->height);
406 register int top = XFASTINT (w->top);
407
408 if ( *x < left || *x >= right_edge
409 || *y < top || *y >= top + window_height)
410 return 0;
411
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
418 /* Is the character is the mode line? */
419 if (*y == top + window_height - 1
420 && ! MINI_WINDOW_P (w))
421 return 2;
422
423 *x -= WINDOW_LEFT_MARGIN (w);
424 *y -= top;
425 return 1;
426 }
427
428 DEFUN ("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\
431 COORDINATES is a cons of the form (X . Y), X and Y being distances\n\
432 measured in characters from the upper-left corner of the frame.\n\
433 (0 . 0) denotes the character in the upper left corner of the\n\
434 frame.\n\
435 If COORDINATES are in the text portion of WINDOW,\n\
436 the coordinates relative to the window are returned.\n\
437 If they are in the mode line of WINDOW, `mode-line' is returned.\n\
438 If they are on the border between WINDOW and its right sibling,\n\
439 `vertical-line' is returned.")
440 (coordinates, window)
441 register Lisp_Object coordinates, window;
442 {
443 int x, y;
444
445 CHECK_LIVE_WINDOW (window, 0);
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. */
456 return Fcons (make_number (x), make_number (y));
457
458 case 2: /* In mode line of window. */
459 return Qmode_line;
460
461 case 3: /* On right border of window. */
462 return Qvertical_line;
463
464 default:
465 abort ();
466 }
467 }
468
469 /* Find the window containing column x, row y, and return it as a
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. */
474 Lisp_Object
475 window_from_coordinates (frame, x, y, part)
476 FRAME_PTR frame;
477 int x, y;
478 int *part;
479 {
480 register Lisp_Object tem, first;
481
482 tem = first = FRAME_SELECTED_WINDOW (frame);
483
484 do
485 {
486 int found = coordinates_in_window (XWINDOW (tem), &x, &y);
487
488 if (found)
489 {
490 *part = found - 1;
491 return tem;
492 }
493
494 tem = Fnext_window (tem, Qt, Qlambda);
495 }
496 while (! EQ (tem, first));
497
498 return Qnil;
499 }
500
501 DEFUN ("window-at", Fwindow_at, Swindow_at, 2, 3, 0,
502 "Return window containing coordinates X and Y on FRAME.\n\
503 If omitted, FRAME defaults to the currently selected frame.\n\
504 The top left corner of the frame is considered to be row 0,\n\
505 column 0.")
506 (x, y, frame)
507 Lisp_Object x, y, frame;
508 {
509 int part;
510
511 if (NILP (frame))
512 XSETFRAME (frame, selected_frame);
513 else
514 CHECK_LIVE_FRAME (frame, 2);
515 CHECK_NUMBER (x, 0);
516 CHECK_NUMBER (y, 1);
517
518 return window_from_coordinates (XFRAME (frame),
519 XINT (x), XINT (y),
520 &part);
521 }
522
523 DEFUN ("window-point", Fwindow_point, Swindow_point, 0, 1, 0,
524 "Return current value of point in WINDOW.\n\
525 For a nonselected window, this is the value point would have\n\
526 if that window were selected.\n\
527 \n\
528 Note that, when WINDOW is the selected window and its buffer\n\
529 is also currently selected, the value returned is the same as (point).\n\
530 It would be more strictly correct to return the `top-level' value\n\
531 of point, outside of any save-excursion forms.\n\
532 But 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
544 DEFUN ("window-start", Fwindow_start, Swindow_start, 0, 1, 0,
545 "Return position at which display currently starts in WINDOW.\n\
546 This is updated by redisplay or by calling `set-window-start'.")
547 (window)
548 Lisp_Object window;
549 {
550 return Fmarker_position (decode_window (window)->start);
551 }
552
553 /* This is text temporarily removed from the doc string below.
554
555 This function returns nil if the position is not currently known.\n\
556 That happens when redisplay is preempted and doesn't finish.\n\
557 If in that case you want to compute where the end of the window would\n\
558 have 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\
562 (point))") */
563
564 DEFUN ("window-end", Fwindow_end, Swindow_end, 0, 1, 0,
565 "Return position at which display currently ends in WINDOW.\n\
566 This is updated by redisplay, when it runs to completion.\n\
567 Simply changing the buffer text or setting `window-start'\n\
568 does not update this value.")
569 (window)
570 Lisp_Object window;
571 {
572 Lisp_Object value;
573 struct window *w = decode_window (window);
574 Lisp_Object buf;
575
576 buf = w->buffer;
577 CHECK_BUFFER (buf, 0);
578
579 #if 0 /* This change broke some things. We should make it later. */
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;
586 #endif
587
588 XSETINT (value,
589 BUF_Z (XBUFFER (buf)) - XFASTINT (w->window_end_pos));
590
591 return value;
592 }
593
594 DEFUN ("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
610 DEFUN ("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\
612 Optional third arg NOFORCE non-nil inhibits next redisplay\n\
613 from 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;
623 if (NILP (noforce))
624 w->force_start = Qt;
625 w->update_mode_line = Qt;
626 XSETFASTINT (w->last_modified, 0);
627 XSETFASTINT (w->last_overlay_modified, 0);
628 if (!EQ (window, selected_window))
629 windows_or_buffers_changed++;
630 return pos;
631 }
632
633 DEFUN ("window-dedicated-p", Fwindow_dedicated_p, Swindow_dedicated_p,
634 1, 1, 0,
635 "Return WINDOW's dedicated object, usually t or nil.\n\
636 See also `set-window-dedicated-p'.")
637 (window)
638 Lisp_Object window;
639 {
640 return decode_window (window)->dedicated;
641 }
642
643 DEFUN ("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\
646 If it is dedicated, Emacs will not automatically change\n\
647 which buffer appears in it.\n\
648 The second argument is the new value for the dedication flag;\n\
649 non-nil means yes.")
650 (window, arg)
651 Lisp_Object window, arg;
652 {
653 register struct window *w = decode_window (window);
654
655 if (NILP (arg))
656 w->dedicated = Qnil;
657 else
658 w->dedicated = Qt;
659
660 return w->dedicated;
661 }
662
663 DEFUN ("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
677 struct Lisp_Char_Table *
678 window_display_table (w)
679 struct window *w;
680 {
681 Lisp_Object tem;
682 tem = w->display_table;
683 if (DISP_TABLE_P (tem))
684 return XCHAR_TABLE (tem);
685 tem = XBUFFER (w->buffer)->display_table;
686 if (DISP_TABLE_P (tem))
687 return XCHAR_TABLE (tem);
688 tem = Vstandard_display_table;
689 if (DISP_TABLE_P (tem))
690 return XCHAR_TABLE (tem);
691 return 0;
692 }
693
694 DEFUN ("set-window-display-table", Fset_window_display_table, Sset_window_display_table, 2, 2, 0,
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. */
709 static
710 unshow_buffer (w)
711 register struct window *w;
712 {
713 Lisp_Object buf;
714 struct buffer *b;
715
716 buf = w->buffer;
717 b = XBUFFER (buf);
718 if (b != XMARKER (w->pointm)->buffer)
719 abort ();
720
721 if (w == XWINDOW (b->last_selected_window))
722 b->last_selected_window = Qnil;
723
724 #if 0
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. */
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. */
737 b->last_window_start = marker_position (w->start);
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))
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)));
750 }
751
752 /* Put replacement into the window structure in place of old. */
753 static
754 replace_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
760 /* If OLD is its frame's root_window, then replacement is the new
761 root_window for that frame. */
762
763 if (EQ (old, FRAME_ROOT_WINDOW (XFRAME (o->frame))))
764 FRAME_ROOT_WINDOW (XFRAME (o->frame)) = replacement;
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;
772 if (!NILP (tem))
773 XWINDOW (tem)->prev = replacement;
774
775 p->prev = tem = o->prev;
776 if (!NILP (tem))
777 XWINDOW (tem)->next = replacement;
778
779 p->parent = tem = o->parent;
780 if (!NILP (tem))
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
789 and so is its new parent, we should make replacement's
790 children be children of that parent instead. ***/
791 }
792
793 DEFUN ("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;
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
807 void
808 delete_window (window)
809 register Lisp_Object window;
810 {
811 register Lisp_Object tem, parent, sib;
812 register struct window *p;
813 register struct window *par;
814
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. */
818 if (NILP (window))
819 window = selected_window;
820 else
821 CHECK_WINDOW (window, 0);
822 p = XWINDOW (window);
823
824 /* It's okay to delete an already-deleted window. */
825 if (NILP (p->buffer)
826 && NILP (p->hchild)
827 && NILP (p->vchild))
828 return;
829
830 parent = p->parent;
831 if (NILP (parent))
832 error ("Attempt to delete minibuffer or sole ordinary window");
833 par = XWINDOW (parent);
834
835 windows_or_buffers_changed++;
836 FRAME_WINDOW_SIZES_CHANGED (XFRAME (WINDOW_FRAME (p))) = 1;
837
838 /* Are we trying to delete any frame's selected window? */
839 {
840 Lisp_Object frame, pwindow;
841
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))
856 {
857 Lisp_Object alternative;
858 alternative = Fnext_window (window, Qlambda, Qnil);
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
868 FRAME_SELECTED_WINDOW (XFRAME (frame)) = alternative;
869 }
870 }
871
872 tem = p->buffer;
873 /* tem is null for dummy parent windows
874 (which have inferiors but not any contents themselves) */
875 if (!NILP (tem))
876 {
877 unshow_buffer (p);
878 unchain_marker (p->pointm);
879 unchain_marker (p->start);
880 }
881
882 tem = p->next;
883 if (!NILP (tem))
884 XWINDOW (tem)->prev = p->prev;
885
886 tem = p->prev;
887 if (!NILP (tem))
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;
897 if (NILP (sib))
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;
904 XWINDOW (sib)->top = p->top;
905 XWINDOW (sib)->left = p->left;
906 }
907
908 /* Stretch that sibling. */
909 if (!NILP (par->vchild))
910 set_window_height (sib,
911 XFASTINT (XWINDOW (sib)->height) + XFASTINT (p->height),
912 1);
913 if (!NILP (par->hchild))
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. */
920 tem = par->hchild;
921 if (NILP (tem))
922 tem = par->vchild;
923 if (NILP (XWINDOW (tem)->next))
924 replace_window (parent, tem);
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;
935 }
936 \f
937
938 extern Lisp_Object next_frame (), prev_frame ();
939
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
944 DEFUN ("next-window", Ffoo, Sfoo, 0, 3, 0,
945 "Return next window after WINDOW in canonical ordering of windows.\n\
946 If omitted, WINDOW defaults to the selected window.\n\
947 \n\
948 Optional second arg MINIBUF t means count the minibuffer window even\n\
949 if not active. MINIBUF nil or omitted means count the minibuffer iff\n\
950 it is active. MINIBUF neither t nor nil means not to count the\n\
951 minibuffer even if it is active.\n\
952 \n\
953 Several frames may share a single minibuffer; if the minibuffer\n\
954 counts, all windows on all frames that share that minibuffer count\n\
955 too. Therefore, `next-window' can be used to iterate through the\n\
956 set of windows even when the minibuffer is on another frame. If the\n\
957 minibuffer does not count, only windows from WINDOW's frame count.\n\
958 \n\
959 Optional third arg ALL-FRAMES t means include windows on all frames.\n\
960 ALL-FRAMES nil or omitted means cycle within the frames as specified\n\
961 above. ALL-FRAMES = `visible' means include windows on all visible frames.\n\
962 ALL-FRAMES = 0 means include windows on all visible and iconified frames.\n\
963 If ALL-FRAMES is a frame, restrict search to windows on that frame.\n\
964 Anything else means restrict to WINDOW's frame.\n\
965 \n\
966 If 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\
968 windows, eventually ending up back at the window you started with.\n\
969 `previous-window' traverses the same cycle, in the reverse order.")
970 (window, minibuf, all_frames) */
971
972 DEFUN ("next-window", Fnext_window, Snext_window, 0, 3, 0,
973 0)
974 (window, minibuf, all_frames)
975 register Lisp_Object window, minibuf, all_frames;
976 {
977 register Lisp_Object tem;
978 Lisp_Object start_window;
979
980 if (NILP (window))
981 window = selected_window;
982 else
983 CHECK_LIVE_WINDOW (window, 0);
984
985 start_window = window;
986
987 /* minibuf == nil may or may not include minibuffers.
988 Decide if it does. */
989 if (NILP (minibuf))
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. */
996
997 /* all_frames == nil doesn't specify which frames to include. */
998 if (NILP (all_frames))
999 all_frames = (! EQ (minibuf, Qlambda)
1000 ? (FRAME_MINIBUF_WINDOW
1001 (XFRAME
1002 (WINDOW_FRAME
1003 (XWINDOW (window)))))
1004 : Qnil);
1005 else if (EQ (all_frames, Qvisible))
1006 ;
1007 else if (XFASTINT (all_frames) == 0)
1008 ;
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);
1013 else if (! EQ (all_frames, Qt))
1014 all_frames = Qnil;
1015 /* Now all_frames is t meaning search all frames,
1016 nil meaning search just current frame,
1017 visible meaning search just visible frames,
1018 0 meaning search visible and iconified frames,
1019 or a window, meaning search the frame that window belongs to. */
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. */
1027 while (tem = XWINDOW (window)->next, NILP (tem))
1028 if (tem = XWINDOW (window)->parent, !NILP (tem))
1029 window = tem;
1030 else
1031 {
1032 /* We've reached the end of this frame.
1033 Which other frames are acceptable? */
1034 tem = WINDOW_FRAME (XWINDOW (window));
1035 if (! NILP (all_frames))
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))
1047 XSETFRAME (tem, selected_frame);
1048 }
1049 tem = FRAME_ROOT_WINDOW (XFRAME (tem));
1050
1051 break;
1052 }
1053
1054 window = tem;
1055
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 {
1060 if (!NILP (XWINDOW (window)->hchild))
1061 window = XWINDOW (window)->hchild;
1062 else if (!NILP (XWINDOW (window)->vchild))
1063 window = XWINDOW (window)->vchild;
1064 else break;
1065 }
1066 }
1067 /* Which windows are acceptable?
1068 Exit the loop and accept this window if
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
1072 we've come all the way around and we're back at the original window. */
1073 while (MINI_WINDOW_P (XWINDOW (window))
1074 && ! EQ (minibuf, Qt)
1075 && ! EQ (minibuf, window)
1076 && ! EQ (window, start_window));
1077
1078 return window;
1079 }
1080
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
1085 DEFUN ("previous-window", Ffoo, Sfoo, 0, 3, 0,
1086 "Return the window preceding WINDOW in canonical ordering of windows.\n\
1087 If omitted, WINDOW defaults to the selected window.\n\
1088 \n\
1089 Optional second arg MINIBUF t means count the minibuffer window even\n\
1090 if not active. MINIBUF nil or omitted means count the minibuffer iff\n\
1091 it is active. MINIBUF neither t nor nil means not to count the\n\
1092 minibuffer even if it is active.\n\
1093 \n\
1094 Several frames may share a single minibuffer; if the minibuffer\n\
1095 counts, all windows on all frames that share that minibuffer count\n\
1096 too. Therefore, `previous-window' can be used to iterate through\n\
1097 the set of windows even when the minibuffer is on another frame. If\n\
1098 the minibuffer does not count, only windows from WINDOW's frame count\n\
1099 \n\
1100 Optional third arg ALL-FRAMES t means include windows on all frames.\n\
1101 ALL-FRAMES nil or omitted means cycle within the frames as specified\n\
1102 above. ALL-FRAMES = `visible' means include windows on all visible frames.\n\
1103 ALL-FRAMES = 0 means include windows on all visible and iconified frames.\n\
1104 If ALL-FRAMES is a frame, restrict search to windows on that frame.\n\
1105 Anything else means restrict to WINDOW's frame.\n\
1106 \n\
1107 If 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\
1109 windows, eventually ending up back at the window you started with.\n\
1110 `next-window' traverses the same cycle, in the reverse order.")
1111 (window, minibuf, all_frames) */
1112
1113
1114 DEFUN ("previous-window", Fprevious_window, Sprevious_window, 0, 3, 0,
1115 0)
1116 (window, minibuf, all_frames)
1117 register Lisp_Object window, minibuf, all_frames;
1118 {
1119 register Lisp_Object tem;
1120 Lisp_Object start_window;
1121
1122 if (NILP (window))
1123 window = selected_window;
1124 else
1125 CHECK_LIVE_WINDOW (window, 0);
1126
1127 start_window = window;
1128
1129 /* minibuf == nil may or may not include minibuffers.
1130 Decide if it does. */
1131 if (NILP (minibuf))
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. */
1138
1139 /* all_frames == nil doesn't specify which frames to include.
1140 Decide which frames it includes. */
1141 if (NILP (all_frames))
1142 all_frames = (! EQ (minibuf, Qlambda)
1143 ? (FRAME_MINIBUF_WINDOW
1144 (XFRAME
1145 (WINDOW_FRAME
1146 (XWINDOW (window)))))
1147 : Qnil);
1148 else if (EQ (all_frames, Qvisible))
1149 ;
1150 else if (XFASTINT (all_frames) == 0)
1151 ;
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);
1156 else if (! EQ (all_frames, Qt))
1157 all_frames = Qnil;
1158 /* Now all_frames is t meaning search all frames,
1159 nil meaning search just current frame,
1160 visible meaning search just visible frames,
1161 0 meaning search visible and iconified frames,
1162 or a window, meaning search the frame that window belongs to. */
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. */
1170 while (tem = XWINDOW (window)->prev, NILP (tem))
1171 if (tem = XWINDOW (window)->parent, !NILP (tem))
1172 window = tem;
1173 else
1174 {
1175 /* We have found the top window on the frame.
1176 Which frames are acceptable? */
1177 tem = WINDOW_FRAME (XWINDOW (window));
1178 if (! NILP (all_frames))
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. */
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))
1199 XSETFRAME (tem, selected_frame);
1200 }
1201 /* If this frame has a minibuffer, find that window first,
1202 because it is conceptually the last window in that frame. */
1203 if (FRAME_HAS_MINIBUF_P (XFRAME (tem)))
1204 tem = FRAME_MINIBUF_WINDOW (XFRAME (tem));
1205 else
1206 tem = FRAME_ROOT_WINDOW (XFRAME (tem));
1207
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 {
1216 if (!NILP (XWINDOW (window)->hchild))
1217 window = XWINDOW (window)->hchild;
1218 else if (!NILP (XWINDOW (window)->vchild))
1219 window = XWINDOW (window)->vchild;
1220 else break;
1221 while (tem = XWINDOW (window)->next, !NILP (tem))
1222 window = tem;
1223 }
1224 }
1225 /* Which windows are acceptable?
1226 Exit the loop and accept this window if
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
1230 we've come all the way around and we're back at the original window. */
1231 while (MINI_WINDOW_P (XWINDOW (window))
1232 && ! EQ (minibuf, Qt)
1233 && ! EQ (minibuf, window)
1234 && ! EQ (window, start_window));
1235
1236 return window;
1237 }
1238
1239 DEFUN ("other-window", Fother_window, Sother_window, 1, 2, "p",
1240 "Select the ARG'th different window on this frame.\n\
1241 All windows on current frame are arranged in a cyclic order.\n\
1242 This command selects the window ARG steps away in that order.\n\
1243 A negative ARG moves in the opposite order. If the optional second\n\
1244 argument ALL_FRAMES is non-nil, cycle through all frames.")
1245 (arg, all_frames)
1246 register Lisp_Object arg, all_frames;
1247 {
1248 register int i;
1249 register Lisp_Object w;
1250
1251 CHECK_NUMBER (arg, 0);
1252 w = selected_window;
1253 i = XINT (arg);
1254
1255 while (i > 0)
1256 {
1257 w = Fnext_window (w, Qnil, all_frames);
1258 i--;
1259 }
1260 while (i < 0)
1261 {
1262 w = Fprevious_window (w, Qnil, all_frames);
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.
1271 If FRAMES is Qt, look at all frames;
1272 Qnil, look at just the selected frame;
1273 Qvisible, look at visible frames;
1274 a frame, just look at windows on that frame.
1275 If MINI is non-zero, perform the operation on minibuffer windows too.
1276 */
1277
1278 enum 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,
1286 UNSHOW_BUFFER /* Arg is buffer */
1287 };
1288
1289 static Lisp_Object
1290 window_loop (type, obj, mini, frames)
1291 enum window_loop type;
1292 register Lisp_Object obj, frames;
1293 int mini;
1294 {
1295 register Lisp_Object w;
1296 register Lisp_Object best_window;
1297 register Lisp_Object next_window;
1298 register Lisp_Object last_window;
1299 FRAME_PTR frame;
1300 Lisp_Object frame_arg;
1301 frame_arg = Qt;
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;
1310 else
1311 frame = 0;
1312 if (frame)
1313 frame_arg = Qlambda;
1314 else if (XFASTINT (frames) == 0)
1315 frame_arg = frames;
1316 else if (EQ (frames, Qvisible))
1317 frame_arg = frames;
1318
1319 /* frame_arg is Qlambda to stick to one frame,
1320 Qvisible to consider all visible frames,
1321 or Qt otherwise. */
1322
1323 /* Pick a window to start with. */
1324 if (WINDOWP (obj))
1325 w = obj;
1326 else if (frame)
1327 w = FRAME_SELECTED_WINDOW (frame);
1328 else
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
1338 last_window = Fprevious_window (w, mini ? Qt : Qnil, frame_arg);
1339
1340 best_window = Qnil;
1341 for (;;)
1342 {
1343 FRAME_PTR w_frame = XFRAME (WINDOW_FRAME (XWINDOW (w)));
1344
1345 /* Pick the next window now, since some operations will delete
1346 the current window. */
1347 next_window = Fnext_window (w, mini ? Qt : Qnil, frame_arg);
1348
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. */
1352 if (! MINI_WINDOW_P (XWINDOW (w))
1353 || (mini && minibuf_level > 0))
1354 switch (type)
1355 {
1356 case GET_BUFFER_WINDOW:
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))
1362 return w;
1363 break;
1364
1365 case GET_LRU_WINDOW:
1366 /* t as arg means consider only full-width windows */
1367 if (!NILP (obj) && !WINDOW_FULL_WIDTH_P (XWINDOW (w)))
1368 break;
1369 /* Ignore dedicated windows and minibuffers. */
1370 if (MINI_WINDOW_P (XWINDOW (w))
1371 || !NILP (XWINDOW (w)->dedicated))
1372 break;
1373 if (NILP (best_window)
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 {
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))
1394 {
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);
1413 }
1414 else
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);
1430 }
1431 break;
1432
1433 case GET_LARGEST_WINDOW:
1434 /* Ignore dedicated windows and minibuffers. */
1435 if (MINI_WINDOW_P (XWINDOW (w))
1436 || !NILP (XWINDOW (w)->dedicated))
1437 break;
1438 {
1439 struct window *best_window_ptr = XWINDOW (best_window);
1440 struct window *w_ptr = XWINDOW (w);
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))))
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. */
1453 Lisp_Object another_buffer;
1454 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (w)));
1455 another_buffer = Fother_buffer (obj, Qnil);
1456 if (NILP (another_buffer))
1457 another_buffer
1458 = Fget_buffer_create (build_string ("*scratch*"));
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))
1462 && !NILP (XWINDOW (w)->dedicated)
1463 && other_visible_frames (f))
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 }
1484 else
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 }
1492 }
1493 break;
1494 }
1495
1496 if (EQ (w, last_window))
1497 break;
1498
1499 w = next_window;
1500 }
1501
1502 return best_window;
1503 }
1504
1505 DEFUN ("get-lru-window", Fget_lru_window, Sget_lru_window, 0, 1, 0,
1506 "Return the window least recently selected or used for display.\n\
1507 If optional argument FRAME is `visible', search all visible frames.\n\
1508 If FRAME is 0, search all visible and iconified frames.\n\
1509 If FRAME is t, search all frames.\n\
1510 If FRAME is nil, search only the selected frame.\n\
1511 If FRAME is a frame, search only that frame.")
1512 (frame)
1513 Lisp_Object frame;
1514 {
1515 register Lisp_Object w;
1516 /* First try for a window that is full-width */
1517 w = window_loop (GET_LRU_WINDOW, Qt, 0, frame);
1518 if (!NILP (w) && !EQ (w, selected_window))
1519 return w;
1520 /* If none of them, try the rest */
1521 return window_loop (GET_LRU_WINDOW, Qnil, 0, frame);
1522 }
1523
1524 DEFUN ("get-largest-window", Fget_largest_window, Sget_largest_window, 0, 1, 0,
1525 "Return the largest window in area.\n\
1526 If optional argument FRAME is `visible', search all visible frames.\n\
1527 If FRAME is 0, search all visible and iconified frames.\n\
1528 If FRAME is t, search all frames.\n\
1529 If FRAME is nil, search only the selected frame.\n\
1530 If FRAME is a frame, search only that frame.")
1531 (frame)
1532 Lisp_Object frame;
1533 {
1534 return window_loop (GET_LARGEST_WINDOW, Qnil, 0,
1535 frame);
1536 }
1537
1538 DEFUN ("get-buffer-window", Fget_buffer_window, Sget_buffer_window, 1, 2, 0,
1539 "Return a window currently displaying BUFFER, or nil if none.\n\
1540 If optional argument FRAME is `visible', search all visible frames.\n\
1541 If optional argument FRAME is 0, search all visible and iconified frames.\n\
1542 If FRAME is t, search all frames.\n\
1543 If FRAME is nil, search only the selected frame.\n\
1544 If FRAME is a frame, search only that frame.")
1545 (buffer, frame)
1546 Lisp_Object buffer, frame;
1547 {
1548 buffer = Fget_buffer (buffer);
1549 if (BUFFERP (buffer))
1550 return window_loop (GET_BUFFER_WINDOW, buffer, 1, frame);
1551 else
1552 return Qnil;
1553 }
1554
1555 DEFUN ("delete-other-windows", Fdelete_other_windows, Sdelete_other_windows,
1556 0, 1, "",
1557 "Make WINDOW (or the selected window) fill its frame.\n\
1558 Only the frame WINDOW is on is affected.\n\
1559 This function tries to reduce display jumps\n\
1560 by keeping the text previously visible in WINDOW\n\
1561 in the same place on the frame. Doing this depends on\n\
1562 the value of (window-start WINDOW), so if calling this function\n\
1563 in a program gives strange scrolling, make sure the window-start\n\
1564 value is reasonable when this function is called.")
1565 (window)
1566 Lisp_Object window;
1567 {
1568 struct window *w;
1569 int startpos;
1570 int top;
1571
1572 if (NILP (window))
1573 window = selected_window;
1574 else
1575 CHECK_LIVE_WINDOW (window, 0);
1576
1577 w = XWINDOW (window);
1578
1579 startpos = marker_position (w->start);
1580 top = XFASTINT (w->top) - FRAME_MENU_BAR_LINES (XFRAME (WINDOW_FRAME (w)));
1581
1582 if (MINI_WINDOW_P (w) && top > 0)
1583 error ("Can't expand minibuffer to full frame");
1584
1585 window_loop (DELETE_OTHER_WINDOWS, window, 0, WINDOW_FRAME (w));
1586
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. */
1601 pos = *vmotion (startpos, -top, w);
1602
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
1606 : Qnil);
1607 /* We need to do this, so that the window-scroll-functions
1608 get called. */
1609 w->optional_new_start = Qt;
1610
1611 set_buffer_internal (obuf);
1612 }
1613 return Qnil;
1614 }
1615
1616 DEFUN ("delete-windows-on", Fdelete_windows_on, Sdelete_windows_on,
1617 1, 2, "bDelete windows on (buffer): ",
1618 "Delete all windows showing BUFFER.\n\
1619 Optional second argument FRAME controls which frames are affected.\n\
1620 If nil or omitted, delete all windows showing BUFFER in any frame.\n\
1621 If t, delete only windows showing BUFFER in the selected frame.\n\
1622 If `visible', delete all windows showing BUFFER in any visible frame.\n\
1623 If a frame, delete only windows showing BUFFER in that frame.")
1624 (buffer, frame)
1625 Lisp_Object buffer, frame;
1626 {
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;
1631
1632 if (!NILP (buffer))
1633 {
1634 buffer = Fget_buffer (buffer);
1635 CHECK_BUFFER (buffer, 0);
1636 window_loop (DELETE_BUFFER_WINDOWS, buffer, 0, frame);
1637 }
1638 return Qnil;
1639 }
1640
1641 DEFUN ("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 {
1648 if (!NILP (buffer))
1649 {
1650 buffer = Fget_buffer (buffer);
1651 CHECK_BUFFER (buffer, 0);
1652 window_loop (UNSHOW_BUFFER, buffer, 0, Qt);
1653 }
1654 return Qnil;
1655 }
1656
1657 /* Replace BUFFER with some other buffer in all windows
1658 of all frames, even those on other keyboards. */
1659
1660 void
1661 replace_buffer_in_all_windows (buffer)
1662 Lisp_Object buffer;
1663 {
1664 #ifdef MULTI_KBOARD
1665 Lisp_Object tail, frame;
1666
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)
1671 window_loop (UNSHOW_BUFFER, buffer, 1, frame);
1672 #else
1673 window_loop (UNSHOW_BUFFER, buffer, 1, Qt);
1674 #endif
1675 }
1676 \f
1677 /* Set the height of WINDOW and all its inferiors. */
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
1687 static void
1688 check_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. */
1699 void
1700 check_frame_size (frame, rows, cols)
1701 FRAME_PTR frame;
1702 int *rows, *cols;
1703 {
1704 /* For height, we have to see:
1705 whether the frame has a minibuffer,
1706 whether it wants a mode line, and
1707 whether it has a menu bar. */
1708 int min_height =
1709 (FRAME_MINIBUF_ONLY_P (frame) ? MIN_SAFE_WINDOW_HEIGHT - 1
1710 : (! FRAME_HAS_MINIBUF_P (frame)) ? MIN_SAFE_WINDOW_HEIGHT
1711 : 2 * MIN_SAFE_WINDOW_HEIGHT - 1);
1712 if (FRAME_MENU_BAR_LINES (frame) > 0)
1713 min_height += FRAME_MENU_BAR_LINES (frame);
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
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
1725 void
1726 set_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
1737 check_min_window_sizes ();
1738
1739 if (!nodelete
1740 && ! NILP (w->parent)
1741 && (MINI_WINDOW_P (w)
1742 ? height < 1
1743 : height < window_min_height))
1744 {
1745 delete_window (window);
1746 return;
1747 }
1748
1749 XSETFASTINT (w->last_modified, 0);
1750 XSETFASTINT (w->last_overlay_modified, 0);
1751 windows_or_buffers_changed++;
1752 FRAME_WINDOW_SIZES_CHANGED (XFRAME (WINDOW_FRAME (w))) = 1;
1753
1754 XSETFASTINT (w->height, height);
1755 if (!NILP (w->hchild))
1756 {
1757 for (child = w->hchild; !NILP (child); child = XWINDOW (child)->next)
1758 {
1759 XWINDOW (child)->top = w->top;
1760 set_window_height (child, height, nodelete);
1761 }
1762 }
1763 else if (!NILP (w->vchild))
1764 {
1765 lastbot = top = XFASTINT (w->top);
1766 lastobot = 0;
1767 for (child = w->vchild; !NILP (child); child = c->next)
1768 {
1769 c = XWINDOW (child);
1770
1771 opos = lastobot + XFASTINT (c->height);
1772
1773 XSETFASTINT (c->top, lastbot);
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)
1787 for (child = w->vchild; !NILP (child); child = XWINDOW (child)->next)
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
1796 void
1797 set_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
1808 if (!nodelete && width < window_min_width && !NILP (w->parent))
1809 {
1810 delete_window (window);
1811 return;
1812 }
1813
1814 XSETFASTINT (w->last_modified, 0);
1815 XSETFASTINT (w->last_overlay_modified, 0);
1816 windows_or_buffers_changed++;
1817 FRAME_WINDOW_SIZES_CHANGED (XFRAME (WINDOW_FRAME (w))) = 1;
1818
1819 XSETFASTINT (w->width, width);
1820 if (!NILP (w->vchild))
1821 {
1822 for (child = w->vchild; !NILP (child); child = XWINDOW (child)->next)
1823 {
1824 XWINDOW (child)->left = w->left;
1825 set_window_width (child, width, nodelete);
1826 }
1827 }
1828 else if (!NILP (w->hchild))
1829 {
1830 lastright = left = XFASTINT (w->left);
1831 lastoright = 0;
1832 for (child = w->hchild; !NILP (child); child = c->next)
1833 {
1834 c = XWINDOW (child);
1835
1836 opos = lastoright + XFASTINT (c->width);
1837
1838 XSETFASTINT (c->left, lastright);
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)
1851 for (child = w->hchild; !NILP (child); child = XWINDOW (child)->next)
1852 {
1853 set_window_width (child, XINT (XWINDOW (child)->width), 0);
1854 }
1855 }
1856 }
1857 \f
1858 int window_select_count;
1859
1860 Lisp_Object
1861 Fset_window_buffer_unwind (obuf)
1862 Lisp_Object obuf;
1863 {
1864 Fset_buffer (obuf);
1865 return Qnil;
1866 }
1867
1868 DEFUN ("set-window-buffer", Fset_window_buffer, Sset_window_buffer, 2, 2, 0,
1869 "Make WINDOW display BUFFER as its contents.\n\
1870 BUFFER 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);
1876 int count = specpdl_ptr - specpdl;
1877
1878 buffer = Fget_buffer (buffer);
1879 CHECK_BUFFER (buffer, 1);
1880
1881 if (NILP (XBUFFER (buffer)->name))
1882 error ("Attempt to display deleted buffer");
1883
1884 tem = w->buffer;
1885 if (NILP (tem))
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 {
1890 if (!NILP (w->dedicated) && !EQ (tem, buffer))
1891 error ("Window is dedicated to `%s'",
1892 XSTRING (XBUFFER (tem)->name)->data);
1893
1894 unshow_buffer (w);
1895 }
1896
1897 w->buffer = buffer;
1898
1899 if (EQ (window, selected_window))
1900 XBUFFER (w->buffer)->last_selected_window = window;
1901 if (INTEGERP (XBUFFER (buffer)->display_count))
1902 XSETINT (XBUFFER (buffer)->display_count,
1903 XINT (XBUFFER (buffer)->display_count) + 1);
1904
1905 XSETFASTINT (w->window_end_pos, 0);
1906 w->window_end_valid = Qnil;
1907 XSETFASTINT (w->hscroll, 0);
1908 set_marker_both (w->pointm, buffer,
1909 BUF_PT (XBUFFER (buffer)), BUF_PT_BYTE (XBUFFER (buffer)));
1910 set_marker_restricted (w->start,
1911 make_number (XBUFFER (buffer)->last_window_start),
1912 buffer);
1913 w->start_at_line_beg = Qnil;
1914 w->force_start = Qnil;
1915 XSETFASTINT (w->last_modified, 0);
1916 XSETFASTINT (w->last_overlay_modified, 0);
1917 windows_or_buffers_changed++;
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. */
1922 if (EQ (window, selected_window))
1923 Fset_buffer (buffer);
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
1932 if (! NILP (Vwindow_scroll_functions))
1933 run_hook_with_args_2 (Qwindow_scroll_functions, window,
1934 Fmarker_position (w->start));
1935
1936 if (! NILP (Vwindow_configuration_change_hook)
1937 && ! NILP (Vrun_hooks))
1938 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
1939
1940 unbind_to (count, Qnil);
1941
1942 return Qnil;
1943 }
1944
1945 DEFUN ("select-window", Fselect_window, Sselect_window, 1, 1, 0,
1946 "Select WINDOW. Most editing will apply to WINDOW's buffer.\n\
1947 The main editor command loop selects the buffer of the selected window\n\
1948 before each command.")
1949 (window)
1950 register Lisp_Object window;
1951 {
1952 register struct window *w;
1953 register struct window *ow = XWINDOW (selected_window);
1954
1955 CHECK_LIVE_WINDOW (window, 0);
1956
1957 w = XWINDOW (window);
1958
1959 if (NILP (w->buffer))
1960 error ("Trying to select deleted window or non-leaf window");
1961
1962 XSETFASTINT (w->use_time, ++window_select_count);
1963 if (EQ (window, selected_window))
1964 return window;
1965
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)));
1970
1971 selected_window = window;
1972 if (XFRAME (WINDOW_FRAME (w)) != selected_frame)
1973 {
1974 XFRAME (WINDOW_FRAME (w))->selected_window = window;
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);
1980 }
1981 else
1982 selected_frame->selected_window = window;
1983
1984 record_buffer (w->buffer);
1985 Fset_buffer (w->buffer);
1986
1987 XBUFFER (w->buffer)->last_selected_window = window;
1988
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);
1998 else if (new_point > ZV)
1999 SET_PT (ZV);
2000 else
2001 SET_PT (new_point);
2002 }
2003
2004 windows_or_buffers_changed++;
2005 return window;
2006 }
2007
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. */
2017
2018 static Lisp_Object
2019 display_buffer_1 (window)
2020 Lisp_Object window;
2021 {
2022 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (window)));
2023 FRAME_SAMPLE_VISIBILITY (f);
2024 if (f != selected_frame)
2025 {
2026 if (FRAME_ICONIFIED_P (f))
2027 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (window)));
2028 else if (FRAME_VISIBLE_P (f))
2029 Fraise_frame (WINDOW_FRAME (XWINDOW (window)));
2030 }
2031 return window;
2032 }
2033
2034 DEFUN ("special-display-p", Fspecial_display_p, Sspecial_display_p, 1, 1, 0,
2035 "Returns non-nil if a buffer named BUFFER-NAME would be created specially.\n\
2036 The value is actually t if the frame should be called with default frame\n\
2037 parameters, and a list of frame parameters if they were specified.\n\
2038 See `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)
2063 return XCDR (car);
2064 }
2065 return Qnil;
2066 }
2067
2068 DEFUN ("same-window-p", Fsame_window_p, Ssame_window_p, 1, 1, 0,
2069 "Returns non-nil if a new buffer named BUFFER-NAME would use the same window.\n\
2070 See `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
2100 /* Use B so the default is (other-buffer). */
2101 DEFUN ("display-buffer", Fdisplay_buffer, Sdisplay_buffer, 1, 3,
2102 "BDisplay buffer: \nP",
2103 "Make BUFFER appear in some window but don't select it.\n\
2104 BUFFER can be a buffer or a buffer name.\n\
2105 If BUFFER is shown already in some window, just use that one,\n\
2106 unless the window is the selected window and the optional second\n\
2107 argument NOT-THIS-WINDOW is non-nil (interactively, with prefix arg).\n\
2108 If `pop-up-frames' is non-nil, make a new frame if no window shows BUFFER.\n\
2109 Returns the window displaying BUFFER.\n\
2110 \n\
2111 The variables `special-display-buffer-names', `special-display-regexps',\n\
2112 `same-window-buffer-names', and `same-window-regexps' customize how certain\n\
2113 buffer names are handled.\n\
2114 \n\
2115 If optional argument FRAME is `visible', search all visible frames.\n\
2116 If FRAME is 0, search all visible and iconified frames.\n\
2117 If FRAME is t, search all frames.\n\
2118 If FRAME is a frame, search only that frame.\n\
2119 If 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;
2125 {
2126 register Lisp_Object window, tem;
2127
2128 buffer = Fget_buffer (buffer);
2129 CHECK_BUFFER (buffer, 0);
2130
2131 if (!NILP (Vdisplay_buffer_function))
2132 return call2 (Vdisplay_buffer_function, buffer, not_this_window);
2133
2134 if (NILP (not_this_window)
2135 && XBUFFER (XWINDOW (selected_window)->buffer) == XBUFFER (buffer))
2136 return display_buffer_1 (selected_window);
2137
2138 /* See if the user has specified this buffer should appear
2139 in the selected window. */
2140 if (NILP (not_this_window))
2141 {
2142 tem = Fsame_window_p (XBUFFER (buffer)->name);
2143 if (!NILP (tem))
2144 {
2145 Fswitch_to_buffer (buffer, Qnil);
2146 return display_buffer_1 (selected_window);
2147 }
2148 }
2149
2150 /* If pop_up_frames,
2151 look for a window showing BUFFER on any visible or iconified frame.
2152 Otherwise search only the current frame. */
2153 if (! NILP (frame))
2154 tem = frame;
2155 else if (pop_up_frames || last_nonminibuf_frame == 0)
2156 XSETFASTINT (tem, 0);
2157 else
2158 XSETFRAME (tem, last_nonminibuf_frame);
2159 window = Fget_buffer_window (buffer, tem);
2160 if (!NILP (window)
2161 && (NILP (not_this_window) || !EQ (window, selected_window)))
2162 {
2163 return display_buffer_1 (window);
2164 }
2165
2166 /* Certain buffer names get special handling. */
2167 if (!NILP (Vspecial_display_function))
2168 {
2169 tem = Fspecial_display_p (XBUFFER (buffer)->name);
2170 if (EQ (tem, Qt))
2171 return call1 (Vspecial_display_function, buffer);
2172 if (CONSP (tem))
2173 return call2 (Vspecial_display_function, buffer, tem);
2174 }
2175
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)
2179 {
2180 window = Fframe_selected_window (call0 (Vpop_up_frame_function));
2181 Fset_window_buffer (window, buffer);
2182 return display_buffer_1 (window);
2183 }
2184
2185 if (pop_up_windows
2186 || FRAME_MINIBUF_ONLY_P (selected_frame)
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)
2190 )
2191 {
2192 Lisp_Object frames;
2193
2194 frames = Qnil;
2195 if (FRAME_MINIBUF_ONLY_P (selected_frame))
2196 XSETFRAME (frames, last_nonminibuf_frame);
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
2201 /* Note that both Fget_largest_window and Fget_lru_window
2202 ignore minibuffers and dedicated windows.
2203 This means they can return nil. */
2204
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
2221 /* If we got a tall enough full-width window that can be split,
2222 split it. */
2223 if (!NILP (window)
2224 && ! FRAME_NO_SPLIT_P (XFRAME (XWINDOW (window)->frame))
2225 && window_height (window) >= split_height_threshold
2226 && WINDOW_FULL_WIDTH_P (XWINDOW (window)))
2227 window = Fsplit_window (window, Qnil, Qnil);
2228 else
2229 {
2230 Lisp_Object upper, lower, other;
2231
2232 window = Fget_lru_window (frames);
2233 /* If the LRU window is selected, and big enough,
2234 and can be split, split it. */
2235 if (!NILP (window)
2236 && ! FRAME_NO_SPLIT_P (XFRAME (XWINDOW (window)->frame))
2237 && (EQ (window, selected_window)
2238 || EQ (XWINDOW (window)->parent, Qnil))
2239 && window_height (window) >= window_min_height << 1)
2240 window = Fsplit_window (window, Qnil, Qnil);
2241 /* If Fget_lru_window returned nil, try other approaches. */
2242
2243 /* Try visible frames first. */
2244 if (NILP (window))
2245 window = Fget_buffer_window (buffer, Qvisible);
2246 if (NILP (window))
2247 window = Fget_largest_window (Qvisible);
2248 /* If that didn't work, try iconified frames. */
2249 if (NILP (window))
2250 window = Fget_buffer_window (buffer, make_number (0));
2251 if (NILP (window))
2252 window = Fget_largest_window (make_number (0));
2253 /* Try invisible frames. */
2254 if (NILP (window))
2255 window = Fget_buffer_window (buffer, Qt);
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));
2261 /* If window appears above or below another,
2262 even out their heights. */
2263 other = upper = lower = Qnil;
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. */
2270 && !EQ (XWINDOW (other)->top, XWINDOW (window)->top)
2271 && (XFASTINT (XWINDOW (other)->height)
2272 > XFASTINT (XWINDOW (window)->height)))
2273 {
2274 int total = (XFASTINT (XWINDOW (other)->height)
2275 + XFASTINT (XWINDOW (window)->height));
2276 Lisp_Object old_selected_window;
2277 old_selected_window = selected_window;
2278
2279 selected_window = upper;
2280 change_window_height ((total / 2
2281 - XFASTINT (XWINDOW (upper)->height)),
2282 0);
2283 selected_window = old_selected_window;
2284 }
2285 }
2286 }
2287 else
2288 window = Fget_lru_window (Qnil);
2289
2290 Fset_window_buffer (window, buffer);
2291 return display_buffer_1 (window);
2292 }
2293
2294 void
2295 temp_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
2302 XBUFFER (buf)->directory = current_buffer->directory;
2303
2304 Fset_buffer (buf);
2305 BUF_SAVE_MODIFF (XBUFFER (buf)) = MODIFF;
2306 BEGV = BEG;
2307 ZV = Z;
2308 SET_PT (BEG);
2309 XBUFFER (buf)->clip_changed = 1;
2310 set_buffer_internal (old);
2311
2312 if (!EQ (Vtemp_buffer_show_function, Qnil))
2313 call1 (Vtemp_buffer_show_function, buf);
2314 else
2315 {
2316 window = Fdisplay_buffer (buf, Qnil, Qnil);
2317
2318 if (XFRAME (XWINDOW (window)->frame) != selected_frame)
2319 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (window)));
2320 Vminibuf_scroll_window = window;
2321 w = XWINDOW (window);
2322 XSETFASTINT (w->hscroll, 0);
2323 set_marker_restricted_both (w->start, buf, 1, 1);
2324 set_marker_restricted_both (w->pointm, buf, 1, 1);
2325
2326 /* Run temp-buffer-show-hook, with the chosen window selected. */
2327 if (!NILP (Vrun_hooks))
2328 {
2329 Lisp_Object tem;
2330 tem = Fboundp (Qtemp_buffer_show_hook);
2331 if (!NILP (tem))
2332 {
2333 tem = Fsymbol_value (Qtemp_buffer_show_hook);
2334 if (!NILP (tem))
2335 {
2336 int count = specpdl_ptr - specpdl;
2337
2338 /* Select the window that was chosen, for running the hook. */
2339 record_unwind_protect (Fset_window_configuration,
2340 Fcurrent_window_configuration (Qnil));
2341
2342 Fselect_window (window);
2343 call1 (Vrun_hooks, Qtemp_buffer_show_hook);
2344 unbind_to (count, Qnil);
2345 }
2346 }
2347 }
2348 }
2349 }
2350 \f
2351 static
2352 make_dummy_parent (window)
2353 Lisp_Object window;
2354 {
2355 Lisp_Object new;
2356 register struct window *o, *p;
2357 register struct Lisp_Vector *vec;
2358 int i;
2359
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);
2367
2368 XSETFASTINT (p->sequence_number, ++sequence_number);
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
2384 DEFUN ("split-window", Fsplit_window, Ssplit_window, 0, 3, "",
2385 "Split WINDOW, putting SIZE lines in the first of the pair.\n\
2386 WINDOW defaults to selected one and SIZE to half its size.\n\
2387 If optional third arg HORFLAG is non-nil, split side by side\n\
2388 and put SIZE columns in the first of the pair.")
2389 (window, size, horflag)
2390 Lisp_Object window, size, horflag;
2391 {
2392 register Lisp_Object new;
2393 register struct window *o, *p;
2394 FRAME_PTR fo;
2395 register int size_int;
2396
2397 if (NILP (window))
2398 window = selected_window;
2399 else
2400 CHECK_LIVE_WINDOW (window, 0);
2401
2402 o = XWINDOW (window);
2403 fo = XFRAME (WINDOW_FRAME (o));
2404
2405 if (NILP (size))
2406 {
2407 if (!NILP (horflag))
2408 /* Calculate the size of the left-hand window, by dividing
2409 the usable space in columns by two. */
2410 size_int = XFASTINT (o->width) >> 1;
2411 else
2412 size_int = XFASTINT (o->height) >> 1;
2413 }
2414 else
2415 {
2416 CHECK_NUMBER (size, 1);
2417 size_int = XINT (size);
2418 }
2419
2420 if (MINI_WINDOW_P (o))
2421 error ("Attempt to split minibuffer window");
2422
2423 check_min_window_sizes ();
2424
2425 if (NILP (horflag))
2426 {
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))
2430 error ("Window height %d too small (after splitting)",
2431 XFASTINT (o->height) - size_int);
2432 if (NILP (o->parent)
2433 || NILP (XWINDOW (o->parent)->vchild))
2434 {
2435 make_dummy_parent (window);
2436 new = o->parent;
2437 XWINDOW (new)->vchild = window;
2438 }
2439 }
2440 else
2441 {
2442 if (size_int < window_min_width)
2443 error ("Window width %d too small (after splitting)", size_int);
2444
2445 if (size_int + window_min_width > XFASTINT (o->width))
2446 error ("Window width %d too small (after splitting)",
2447 XFASTINT (o->width) - size_int);
2448 if (NILP (o->parent)
2449 || NILP (XWINDOW (o->parent)->hchild))
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++;
2462 FRAME_WINDOW_SIZES_CHANGED (fo) = 1;
2463 new = make_window ();
2464 p = XWINDOW (new);
2465
2466 p->frame = o->frame;
2467 p->next = o->next;
2468 if (!NILP (p->next))
2469 XWINDOW (p->next)->prev = new;
2470 p->prev = window;
2471 o->next = new;
2472 p->parent = o->parent;
2473 p->buffer = Qt;
2474
2475 /* Apportion the available frame space among the two new windows */
2476
2477 if (!NILP (horflag))
2478 {
2479 p->height = o->height;
2480 p->top = o->top;
2481 XSETFASTINT (p->width, XFASTINT (o->width) - size_int);
2482 XSETFASTINT (o->width, size_int);
2483 XSETFASTINT (p->left, XFASTINT (o->left) + size_int);
2484 }
2485 else
2486 {
2487 p->left = o->left;
2488 p->width = o->width;
2489 XSETFASTINT (p->height, XFASTINT (o->height) - size_int);
2490 XSETFASTINT (o->height, size_int);
2491 XSETFASTINT (p->top, XFASTINT (o->top) + size_int);
2492 }
2493
2494 Fset_window_buffer (new, o->buffer);
2495
2496 return new;
2497 }
2498 \f
2499 DEFUN ("enlarge-window", Fenlarge_window, Senlarge_window, 1, 2, "p",
2500 "Make current window ARG lines bigger.\n\
2501 From program, optional second arg non-nil means grow sideways ARG columns.")
2502 (arg, side)
2503 register Lisp_Object arg, side;
2504 {
2505 CHECK_NUMBER (arg, 0);
2506 change_window_height (XINT (arg), !NILP (side));
2507
2508 if (! NILP (Vwindow_configuration_change_hook))
2509 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
2510
2511 return Qnil;
2512 }
2513
2514 DEFUN ("shrink-window", Fshrink_window, Sshrink_window, 1, 2, "p",
2515 "Make current window ARG lines smaller.\n\
2516 From program, optional second arg non-nil means shrink sideways arg columns.")
2517 (arg, side)
2518 register Lisp_Object arg, side;
2519 {
2520 CHECK_NUMBER (arg, 0);
2521 change_window_height (-XINT (arg), !NILP (side));
2522
2523 if (! NILP (Vwindow_configuration_change_hook))
2524 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
2525
2526 return Qnil;
2527 }
2528
2529 int
2530 window_height (window)
2531 Lisp_Object window;
2532 {
2533 register struct window *p = XWINDOW (window);
2534 return XFASTINT (p->height);
2535 }
2536
2537 int
2538 window_width (window)
2539 Lisp_Object window;
2540 {
2541 register struct window *p = XWINDOW (window);
2542 return XFASTINT (p->width);
2543 }
2544
2545 #define MINSIZE(w) \
2546 (widthflag \
2547 ? window_min_width \
2548 : (MINI_WINDOW_P (XWINDOW (w)) ? 1 : window_min_height))
2549
2550 #define CURBEG(w) \
2551 *(widthflag ? (int *) &(XWINDOW (w)->left) : (int *) &(XWINDOW (w)->top))
2552
2553 #define CURSIZE(w) \
2554 *(widthflag ? (int *) &(XWINDOW (w)->width) : (int *) &(XWINDOW (w)->height))
2555
2556 /* Unlike set_window_height, this function
2557 also changes the heights of the siblings so as to
2558 keep everything consistent. */
2559
2560 void
2561 change_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;
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);
2573 int maximum;
2574 Lisp_Object next, prev;
2575
2576 check_min_window_sizes ();
2577
2578 window = selected_window;
2579 while (1)
2580 {
2581 p = XWINDOW (window);
2582 parent = p->parent;
2583 if (NILP (parent))
2584 {
2585 if (widthflag)
2586 error ("No other window to side of this one");
2587 break;
2588 }
2589 if (widthflag ? !NILP (XWINDOW (parent)->hchild)
2590 : !NILP (XWINDOW (parent)->vchild))
2591 break;
2592 window = parent;
2593 }
2594
2595 sizep = &CURSIZE (window);
2596
2597 {
2598 register int maxdelta;
2599
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)
2603 /* This is a frame with only one window, a minibuffer-only
2604 or a minibufferless frame. */
2605 : (delta = 0));
2606
2607 if (delta > maxdelta)
2608 /* This case traps trying to make the minibuffer
2609 the full frame, or make the only window aside from the
2610 minibuffer the full frame. */
2611 delta = maxdelta;
2612 }
2613
2614 if (*sizep + delta < MINSIZE (window))
2615 {
2616 delete_window (window);
2617 return;
2618 }
2619
2620 if (delta == 0)
2621 return;
2622
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. */
2631 if (delta <= maximum)
2632 {
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. */
2642 while (delta != 0)
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 }
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. */
2708 CURSIZE (parent) = opht + delta1;
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
2719 XSETFASTINT (p->last_modified, 0);
2720 XSETFASTINT (p->last_overlay_modified, 0);
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
2729 int
2730 window_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
2738 if (!NILP (w->parent) || !NILP (w->vchild) || !NILP (w->hchild)
2739 || !NILP (w->next) || !NILP (w->prev)
2740 || FRAME_WANTS_MODELINE_P (XFRAME (WINDOW_FRAME (w))))
2741 return ht - 1;
2742
2743 return ht;
2744 }
2745
2746
2747 /* Return the number of columns in W.
2748 Don't count columns occupied by scroll bars or the vertical bar
2749 separating W from the sibling to its right. */
2750 int
2751 window_internal_width (w)
2752 struct window *w;
2753 {
2754 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
2755 int width = XINT (w->width);
2756
2757 /* Scroll bars occupy a few columns. */
2758 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
2759 return width - FRAME_SCROLL_BAR_COLS (f);
2760
2761 /* The column of `|' characters separating side-by-side windows
2762 occupies one column only. */
2763 if (!WINDOW_RIGHTMOST_P (w) && !WINDOW_FULL_WIDTH_P (w))
2764 return width - 1;
2765
2766 return width;
2767 }
2768
2769
2770 /* Scroll contents of window WINDOW up N lines.
2771 If WHOLE is nonzero, it means scroll N screenfuls instead. */
2772
2773 static void
2774 window_scroll (window, n, whole, noerror)
2775 Lisp_Object window;
2776 int n;
2777 int whole;
2778 int noerror;
2779 {
2780 register struct window *w = XWINDOW (window);
2781 register int opoint = PT;
2782 register int opoint_byte = PT_BYTE;
2783 register int pos, pos_byte;
2784 register int ht = window_internal_height (w);
2785 register Lisp_Object tem;
2786 int lose;
2787 Lisp_Object bolp, nmoved;
2788 int startpos;
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;
2799
2800 XSETFASTINT (tem, PT);
2801 tem = Fpos_visible_in_window_p (tem, window);
2802
2803 if (NILP (tem))
2804 {
2805 Fvertical_motion (make_number (- (ht / 2)), window);
2806 startpos = PT;
2807 }
2808
2809 SET_PT (startpos);
2810 lose = n < 0 && PT == BEGV;
2811 Fvertical_motion (make_number (n), window);
2812 pos = PT;
2813 pos_byte = PT_BYTE;
2814 bolp = Fbolp ();
2815 SET_PT_BOTH (opoint, opoint_byte);
2816
2817 if (lose)
2818 {
2819 if (noerror)
2820 return;
2821 else
2822 Fsignal (Qbeginning_of_buffer, Qnil);
2823 }
2824
2825 if (pos < ZV)
2826 {
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
2836 set_marker_restricted_both (w->start, w->buffer, pos, pos_byte);
2837 w->start_at_line_beg = bolp;
2838 w->update_mode_line = Qt;
2839 XSETFASTINT (w->last_modified, 0);
2840 XSETFASTINT (w->last_overlay_modified, 0);
2841 /* Set force_start so that redisplay_window will run
2842 the window-scroll-functions. */
2843 w->force_start = Qt;
2844
2845 if (whole && scroll_preserve_screen_position)
2846 {
2847 SET_PT_BOTH (pos, pos_byte);
2848 Fvertical_motion (make_number (original_vpos), window);
2849 }
2850 /* If we scrolled forward, put point enough lines down
2851 that it is outside the scroll margin. */
2852 else if (n > 0)
2853 {
2854 int top_margin;
2855
2856 if (this_scroll_margin > 0)
2857 {
2858 SET_PT_BOTH (pos, pos_byte);
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)
2866 SET_PT_BOTH (opoint, opoint_byte);
2867 else if (scroll_preserve_screen_position)
2868 {
2869 SET_PT_BOTH (pos, pos_byte);
2870 Fvertical_motion (make_number (original_vpos), window);
2871 }
2872 else
2873 SET_PT (top_margin);
2874 }
2875 else if (n < 0)
2876 {
2877 int bottom_margin;
2878
2879 /* If we scrolled backward, put point near the end of the window
2880 but not within the scroll margin. */
2881 SET_PT_BOTH (pos, pos_byte);
2882 tem = Fvertical_motion (make_number (ht - this_scroll_margin), window);
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)
2889 SET_PT_BOTH (opoint, opoint_byte);
2890 else
2891 {
2892 if (scroll_preserve_screen_position)
2893 {
2894 SET_PT_BOTH (pos, pos_byte);
2895 Fvertical_motion (make_number (original_vpos), window);
2896 }
2897 else
2898 Fvertical_motion (make_number (-1), window);
2899 }
2900 }
2901 }
2902 else
2903 {
2904 if (noerror)
2905 return;
2906 else
2907 Fsignal (Qend_of_buffer, Qnil);
2908 }
2909 }
2910 \f
2911 /* This is the guts of Fscroll_up and Fscroll_down. */
2912
2913 static void
2914 scroll_command (n, direction)
2915 register Lisp_Object n;
2916 int direction;
2917 {
2918 register int defalt;
2919 int count = specpdl_ptr - specpdl;
2920
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. */
2923 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
2924 {
2925 record_unwind_protect (save_excursion_restore, save_excursion_save ());
2926 Fset_buffer (XWINDOW (selected_window)->buffer);
2927 }
2928
2929 defalt = (window_internal_height (XWINDOW (selected_window))
2930 - next_screen_context_lines);
2931 defalt = direction * (defalt < 1 ? 1 : defalt);
2932
2933 if (NILP (n))
2934 window_scroll (selected_window, defalt, 1, 0);
2935 else if (EQ (n, Qminus))
2936 window_scroll (selected_window, - defalt, 1, 0);
2937 else
2938 {
2939 n = Fprefix_numeric_value (n);
2940 window_scroll (selected_window, XINT (n) * direction, 0, 0);
2941 }
2942
2943 unbind_to (count, Qnil);
2944 }
2945
2946 DEFUN ("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\
2948 A near full screen is `next-screen-context-lines' less than a full screen.\n\
2949 Negative ARG means scroll downward.\n\
2950 When calling from a program, supply a number as argument or nil.")
2951 (arg)
2952 Lisp_Object arg;
2953 {
2954 scroll_command (arg, 1);
2955 return Qnil;
2956 }
2957
2958 DEFUN ("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\
2960 A near full screen is `next-screen-context-lines' less than a full screen.\n\
2961 Negative ARG means scroll upward.\n\
2962 When calling from a program, supply a number as argument or nil.")
2963 (arg)
2964 Lisp_Object arg;
2965 {
2966 scroll_command (arg, -1);
2967 return Qnil;
2968 }
2969 \f
2970 DEFUN ("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\
2972 If in the minibuffer, `minibuffer-scroll-window' if non-nil\n\
2973 specifies the window.\n\
2974 If `other-window-scroll-buffer' is non-nil, a window\n\
2975 showing that buffer is used.")
2976 ()
2977 {
2978 Lisp_Object window;
2979
2980 if (MINI_WINDOW_P (XWINDOW (selected_window))
2981 && !NILP (Vminibuf_scroll_window))
2982 window = Vminibuf_scroll_window;
2983 /* If buffer is specified, scroll that buffer. */
2984 else if (!NILP (Vother_window_scroll_buffer))
2985 {
2986 window = Fget_buffer_window (Vother_window_scroll_buffer, Qnil);
2987 if (NILP (window))
2988 window = Fdisplay_buffer (Vother_window_scroll_buffer, Qt, Qnil);
2989 }
2990 else
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
3005 CHECK_LIVE_WINDOW (window, 0);
3006
3007 if (EQ (window, selected_window))
3008 error ("There is no other window");
3009
3010 return window;
3011 }
3012
3013 DEFUN ("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\
3015 The next window is the one below the current one; or the one at the top\n\
3016 if the current one is at the bottom. Negative ARG means scroll downward.\n\
3017 When calling from a program, supply a number as argument or nil.\n\
3018 \n\
3019 If in the minibuffer, `minibuffer-scroll-window' if non-nil\n\
3020 specifies the window to scroll.\n\
3021 If `other-window-scroll-buffer' is non-nil, scroll the window\n\
3022 showing that buffer, popping the buffer up if necessary.")
3023 (arg)
3024 register Lisp_Object arg;
3025 {
3026 register Lisp_Object window;
3027 register int defalt;
3028 register struct window *w;
3029 register int count = specpdl_ptr - specpdl;
3030
3031 window = Fother_window_for_scrolling ();
3032
3033 w = XWINDOW (window);
3034 defalt = window_internal_height (w) - next_screen_context_lines;
3035 if (defalt < 1) defalt = 1;
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
3043 if (NILP (arg))
3044 window_scroll (window, defalt, 1, 1);
3045 else if (EQ (arg, Qminus))
3046 window_scroll (window, -defalt, 1, 1);
3047 else
3048 {
3049 if (CONSP (arg))
3050 arg = Fcar (arg);
3051 CHECK_NUMBER (arg, 0);
3052 window_scroll (window, XINT (arg), 0, 1);
3053 }
3054
3055 set_marker_both (w->pointm, Qnil, PT, PT_BYTE);
3056 unbind_to (count, Qnil);
3057
3058 return Qnil;
3059 }
3060 \f
3061 DEFUN ("scroll-left", Fscroll_left, Sscroll_left, 0, 1, "P",
3062 "Scroll selected window display ARG columns left.\n\
3063 Default for ARG is window width minus 2.")
3064 (arg)
3065 register Lisp_Object arg;
3066 {
3067
3068 if (NILP (arg))
3069 XSETFASTINT (arg, window_internal_width (XWINDOW (selected_window)) - 2);
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
3079 DEFUN ("scroll-right", Fscroll_right, Sscroll_right, 0, 1, "P",
3080 "Scroll selected window display ARG columns right.\n\
3081 Default for ARG is window width minus 2.")
3082 (arg)
3083 register Lisp_Object arg;
3084 {
3085 if (NILP (arg))
3086 XSETFASTINT (arg, window_internal_width (XWINDOW (selected_window)) - 2);
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
3096 DEFUN ("recenter", Frecenter, Srecenter, 0, 1, "P",
3097 "Center point in window and redisplay frame. With ARG, put point on line ARG.\n\
3098 The desired position of point is always relative to the current window.\n\
3099 Just C-u as prefix means put point in the center of the window.\n\
3100 If ARG is omitted or nil, erases the entire frame and then\n\
3101 redraws with point in the center of the current window.")
3102 (arg)
3103 register Lisp_Object arg;
3104 {
3105 register struct window *w = XWINDOW (selected_window);
3106 register int ht = window_internal_height (w);
3107 struct position pos;
3108
3109 if (NILP (arg))
3110 {
3111 extern int frame_garbaged;
3112
3113 SET_FRAME_GARBAGED (XFRAME (WINDOW_FRAME (w)));
3114 XSETFASTINT (arg, ht / 2);
3115 }
3116 else if (CONSP (arg)) /* Just C-u. */
3117 {
3118 XSETFASTINT (arg, ht / 2);
3119 }
3120 else
3121 {
3122 arg = Fprefix_numeric_value (arg);
3123 CHECK_NUMBER (arg, 0);
3124 }
3125
3126 if (XINT (arg) < 0)
3127 XSETINT (arg, XINT (arg) + ht);
3128
3129 pos = *vmotion (PT, - XINT (arg), w);
3130
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')
3134 ? Qt : Qnil);
3135 w->force_start = Qt;
3136
3137 return Qnil;
3138 }
3139 \f
3140 DEFUN ("move-to-window-line", Fmove_to_window_line, Smove_to_window_line,
3141 1, 1, "P",
3142 "Position point relative to window.\n\
3143 With no argument, position point at center of window.\n\
3144 An argument specifies frame line; zero means top of window,\n\
3145 negative 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;
3152 Lisp_Object window;
3153
3154 if (NILP (arg))
3155 XSETFASTINT (arg, height / 2);
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);
3164 XSETWINDOW (window, w);
3165 if (start < BEGV || start > ZV)
3166 {
3167 Fvertical_motion (make_number (- (height / 2)), window);
3168 set_marker_both (w->start, w->buffer, PT, PT_BYTE);
3169 w->start_at_line_beg = Fbolp ();
3170 w->force_start = Qt;
3171 }
3172 else
3173 Fgoto_char (w->start);
3174
3175 return Fvertical_motion (arg, window);
3176 }
3177 \f
3178 struct save_window_data
3179 {
3180 EMACS_INT size_from_Lisp_Vector_struct;
3181 struct Lisp_Vector *next_from_Lisp_Vector_struct;
3182 Lisp_Object frame_width, frame_height, frame_menu_bar_lines;
3183 Lisp_Object selected_frame;
3184 Lisp_Object current_window;
3185 Lisp_Object current_buffer;
3186 Lisp_Object minibuf_scroll_window;
3187 Lisp_Object root_window;
3188 Lisp_Object focus_frame;
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;
3192 /* A vector, each of whose elements is a struct saved_window
3193 for one window. */
3194 Lisp_Object saved_windows;
3195 };
3196
3197 /* This is saved as a Lisp_Vector */
3198 struct saved_window
3199 {
3200 /* these first two must agree with struct Lisp_Vector in lisp.h */
3201 EMACS_INT size_from_Lisp_Vector_struct;
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
3216 DEFUN ("window-configuration-p", Fwindow_configuration_p, Swindow_configuration_p, 1, 1, 0,
3217 "Return t if OBJECT is a window-configuration object.")
3218 (object)
3219 Lisp_Object object;
3220 {
3221 if (WINDOW_CONFIGURATIONP (object))
3222 return Qt;
3223 return Qnil;
3224 }
3225
3226 DEFUN ("set-window-configuration", Fset_window_configuration,
3227 Sset_window_configuration, 1, 1, 0,
3228 "Set the configuration of windows and buffers as specified by CONFIGURATION.\n\
3229 CONFIGURATION must be a value previously returned\n\
3230 by `current-window-configuration' (which see).")
3231 (configuration)
3232 Lisp_Object configuration;
3233 {
3234 register struct save_window_data *data;
3235 struct Lisp_Vector *saved_windows;
3236 Lisp_Object new_current_buffer;
3237 Lisp_Object frame;
3238 FRAME_PTR f;
3239 int old_point = -1;
3240
3241 while (!WINDOW_CONFIGURATIONP (configuration))
3242 {
3243 configuration = wrong_type_argument (intern ("window-configuration-p"),
3244 configuration);
3245 }
3246
3247 data = (struct save_window_data *) XVECTOR (configuration);
3248 saved_windows = XVECTOR (data->saved_windows);
3249
3250 new_current_buffer = data->current_buffer;
3251 if (NILP (XBUFFER (new_current_buffer)->name))
3252 new_current_buffer = Qnil;
3253 else
3254 {
3255 if (XBUFFER (new_current_buffer) == current_buffer)
3256 old_point = PT;
3257
3258 }
3259
3260 frame = XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame;
3261 f = XFRAME (frame);
3262
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))
3266 {
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);
3277 int previous_frame_menu_bar_lines = FRAME_MENU_BAR_LINES (f);
3278
3279 /* The mouse highlighting code could get screwed up
3280 if it runs during this. */
3281 BLOCK_INPUT;
3282
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);
3286 #if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
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);
3290 #endif
3291
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
3301 windows_or_buffers_changed++;
3302 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
3303
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
3309 /* Kludge Alert!
3310 Mark all windows now on frame as "deleted".
3311 Restoring the new configuration "undeletes" any that are in it.
3312
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;
3323
3324 if (!NILP (p->parent))
3325 w->parent = SAVED_WINDOW_N (saved_windows,
3326 XFASTINT (p->parent))->window;
3327 else
3328 w->parent = Qnil;
3329
3330 if (!NILP (p->prev))
3331 {
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. */
3356 if (BUFFERP (w->height))
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;
3364 XSETFASTINT (w->last_modified, 0);
3365 XSETFASTINT (w->last_overlay_modified, 0);
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;
3377 set_marker_restricted (w->start, p->start, w->buffer);
3378 set_marker_restricted (w->pointm, p->pointm, w->buffer);
3379 Fset_marker (XBUFFER (w->buffer)->mark,
3380 p->mark, w->buffer);
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. */
3385 if (!EQ (p->buffer, new_current_buffer)
3386 && XBUFFER (p->buffer) == current_buffer)
3387 Fgoto_char (w->pointm);
3388 }
3389 else if (NILP (w->buffer) || NILP (XBUFFER (w->buffer)->name))
3390 /* Else unless window has a live buffer, get one. */
3391 {
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;
3398 }
3399 else
3400 /* Keeping window's old buffer; make sure the markers
3401 are real. */
3402 {
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)
3408 set_marker_restricted_both (w->pointm, w->buffer,
3409 BUF_PT (XBUFFER (w->buffer)),
3410 BUF_PT_BYTE (XBUFFER (w->buffer)));
3411 w->start_at_line_beg = Qt;
3412 }
3413 }
3414 }
3415
3416 FRAME_ROOT_WINDOW (f) = data->root_window;
3417 Fselect_window (data->current_window);
3418 XBUFFER (XWINDOW (selected_window)->buffer)->last_selected_window
3419 = selected_window;
3420
3421 if (NILP (data->focus_frame)
3422 || (FRAMEP (data->focus_frame)
3423 && FRAME_LIVE_P (XFRAME (data->focus_frame))))
3424 Fredirect_frame_focus (frame, data->focus_frame);
3425
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. */
3428 if (f != selected_frame && FRAME_WINDOW_P (f))
3429 do_switch_frame (WINDOW_FRAME (XWINDOW (data->root_window)),
3430 Qnil, 0);
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);
3438 #if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
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);
3441 #endif
3442
3443 UNBLOCK_INPUT;
3444 }
3445
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
3450 /* Fselect_window will have made f the selected frame, so we
3451 reselect the proper frame here. Fhandle_switch_frame will change the
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. */
3455 if (FRAME_LIVE_P (XFRAME (data->selected_frame)))
3456 do_switch_frame (data->selected_frame, Qnil, 0);
3457
3458 if (!NILP (new_current_buffer))
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 }
3468
3469 Vminibuf_scroll_window = data->minibuf_scroll_window;
3470
3471 if (! NILP (Vwindow_configuration_change_hook)
3472 && ! NILP (Vrun_hooks))
3473 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
3474
3475 return (Qnil);
3476 }
3477
3478 /* Mark all windows now on frame as deleted
3479 by setting their buffers to nil. */
3480
3481 void
3482 delete_all_subwindows (w)
3483 register struct window *w;
3484 {
3485 if (!NILP (w->next))
3486 delete_all_subwindows (XWINDOW (w->next));
3487 if (!NILP (w->vchild))
3488 delete_all_subwindows (XWINDOW (w->vchild));
3489 if (!NILP (w->hchild))
3490 delete_all_subwindows (XWINDOW (w->hchild));
3491
3492 w->height = w->buffer; /* See Fset_window_configuration for excuse. */
3493
3494 if (!NILP (w->buffer))
3495 unshow_buffer (w);
3496
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;
3504 }
3505 \f
3506 static int
3507 count_windows (window)
3508 register struct window *window;
3509 {
3510 register int count = 1;
3511 if (!NILP (window->next))
3512 count += count_windows (XWINDOW (window->next));
3513 if (!NILP (window->vchild))
3514 count += count_windows (XWINDOW (window->vchild));
3515 if (!NILP (window->hchild))
3516 count += count_windows (XWINDOW (window->hchild));
3517 return count;
3518 }
3519
3520 static int
3521 save_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
3530 for (;!NILP (window); window = w->next)
3531 {
3532 p = SAVED_WINDOW_N (vector, i);
3533 w = XWINDOW (window);
3534
3535 XSETFASTINT (w->temslot, i++);
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;
3544 if (!NILP (w->buffer))
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 ();
3552 set_marker_both (p->pointm, w->buffer,
3553 BUF_PT (XBUFFER (w->buffer)),
3554 BUF_PT_BYTE (XBUFFER (w->buffer)));
3555 }
3556 else
3557 p->pointm = Fcopy_marker (w->pointm, Qnil);
3558
3559 p->start = Fcopy_marker (w->start, Qnil);
3560 p->start_at_line_beg = w->start_at_line_beg;
3561
3562 tem = XBUFFER (w->buffer)->mark;
3563 p->mark = Fcopy_marker (tem, Qnil);
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
3573 if (NILP (w->parent))
3574 p->parent = Qnil;
3575 else
3576 p->parent = XWINDOW (w->parent)->temslot;
3577
3578 if (NILP (w->prev))
3579 p->prev = Qnil;
3580 else
3581 p->prev = XWINDOW (w->prev)->temslot;
3582
3583 if (!NILP (w->vchild))
3584 i = save_window_save (w->vchild, vector, i);
3585 if (!NILP (w->hchild))
3586 i = save_window_save (w->hchild, vector, i);
3587 }
3588
3589 return i;
3590 }
3591
3592 DEFUN ("current-window-configuration", Fcurrent_window_configuration,
3593 Scurrent_window_configuration, 0, 1, 0,
3594 "Return an object representing the current window configuration of FRAME.\n\
3595 If FRAME is nil or omitted, use the selected frame.\n\
3596 This describes the number of windows, their sizes and current buffers,\n\
3597 and for each displayed buffer, where display starts, and the positions of\n\
3598 point and mark. An exception is made for point in the current buffer:\n\
3599 its value is -not- saved.\n\
3600 This also records the currently selected frame, and FRAME's focus\n\
3601 redirection (see `redirect-frame-focus').")
3602 (frame)
3603 Lisp_Object frame;
3604 {
3605 register Lisp_Object tem;
3606 register int n_windows;
3607 register struct save_window_data *data;
3608 register struct Lisp_Vector *vec;
3609 register int i;
3610 FRAME_PTR f;
3611
3612 if (NILP (frame))
3613 f = selected_frame;
3614 else
3615 {
3616 CHECK_LIVE_FRAME (frame, 0);
3617 f = XFRAME (frame);
3618 }
3619
3620 n_windows = count_windows (XWINDOW (FRAME_ROOT_WINDOW (f)));
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
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));
3630 XSETFRAME (data->selected_frame, selected_frame);
3631 data->current_window = FRAME_SELECTED_WINDOW (f);
3632 XSETBUFFER (data->current_buffer, current_buffer);
3633 data->minibuf_scroll_window = Vminibuf_scroll_window;
3634 data->root_window = FRAME_ROOT_WINDOW (f);
3635 data->focus_frame = FRAME_FOCUS_FRAME (f);
3636 XSETINT (data->min_height, window_min_height);
3637 XSETINT (data->min_width, window_min_width);
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);
3643 save_window_save (FRAME_ROOT_WINDOW (f),
3644 XVECTOR (tem), 0);
3645 XSETWINDOW_CONFIGURATION (tem, data);
3646 return (tem);
3647 }
3648
3649 DEFUN ("save-window-excursion", Fsave_window_excursion, Ssave_window_excursion,
3650 0, UNEVALLED, 0,
3651 "Execute body, preserving window sizes and contents.\n\
3652 Restore which buffer appears in which window, where display starts,\n\
3653 and the value of point and mark for each window.\n\
3654 Also restore which buffer is current.\n\
3655 But do not preserve point in the current buffer.\n\
3656 Does 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,
3664 Fcurrent_window_configuration (Qnil));
3665 val = Fprogn (args);
3666 return unbind_to (count, val);
3667 }
3668 \f
3669 /* Return 1 if window configurations C1 and C2
3670 describe the same state of affairs. This is used by Fequal. */
3671
3672 int
3673 compare_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
3763 init_window_once ()
3764 {
3765 selected_frame = make_terminal_frame ();
3766 XSETFRAME (Vterminal_frame, selected_frame);
3767 minibuf_window = selected_frame->minibuffer_window;
3768 selected_window = selected_frame->selected_window;
3769 last_nonminibuf_frame = selected_frame;
3770
3771 window_initialized = 1;
3772 }
3773
3774 syms_of_window ()
3775 {
3776 staticpro (&Qwindow_configuration_change_hook);
3777 Qwindow_configuration_change_hook
3778 = intern ("window-configuration-change-hook");
3779
3780 Qwindowp = intern ("windowp");
3781 staticpro (&Qwindowp);
3782
3783 Qwindow_live_p = intern ("window-live-p");
3784 staticpro (&Qwindow_live_p);
3785
3786 Qtemp_buffer_show_hook = intern ("temp-buffer-show-hook");
3787 staticpro (&Qtemp_buffer_show_hook);
3788
3789 DEFVAR_LISP ("temp-buffer-show-function", &Vtemp_buffer_show_function,
3790 "Non-nil means call as function to display a help buffer.\n\
3791 The function is called with one argument, the buffer to be displayed.\n\
3792 Used by `with-output-to-temp-buffer'.\n\
3793 If this function is used, then it must do the entire job of showing\n\
3794 the buffer; `temp-buffer-show-hook' is not run unless this function runs it.");
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\
3799 It 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\
3801 Commands such as `switch-to-buffer-other-window' and `find-file-other-window'\n\
3802 work using this function.");
3803 Vdisplay_buffer_function = Qnil;
3804
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
3813 DEFVAR_BOOL ("pop-up-frames", &pop_up_frames,
3814 "*Non-nil means `display-buffer' should make a separate frame.");
3815 pop_up_frames = 0;
3816
3817 DEFVAR_LISP ("pop-up-frame-function", &Vpop_up_frame_function,
3818 "Function to call to handle automatic new frame creation.\n\
3819 It is called with no arguments and should return a newly created frame.\n\
3820 \n\
3821 A typical value might be `(lambda () (new-frame pop-up-frame-alist))'\n\
3822 where `pop-up-frame-alist' would hold the default frame parameters.");
3823 Vpop_up_frame_function = Qnil;
3824
3825 DEFVAR_LISP ("special-display-buffer-names", &Vspecial_display_buffer_names,
3826 "*List of buffer names that should have their own special frames.\n\
3827 Displaying a buffer whose name is in this list makes a special frame for it\n\
3828 using `special-display-function'. See also `special-display-regexps'.\n\
3829 \n\
3830 An element of the list can be a list instead of just a string.\n\
3831 There are two ways to use a list as an element:\n\
3832 (BUFFER FRAME-PARAMETERS...) (BUFFER FUNCTION OTHER-ARGS...)\n\
3833 In the first case, FRAME-PARAMETERS are used to create the frame.\n\
3834 In the latter case, FUNCTION is called with BUFFER as the first argument,\n\
3835 followed by OTHER-ARGS--it can display BUFFER in any way it likes.\n\
3836 All this is done by the function found in `special-display-function'.\n\
3837 \n\
3838 If this variable appears \"not to work\", because you add a name to it\n\
3839 but that buffer still appears in the selected window, look at the\n\
3840 values of `same-window-buffer-names' and `same-window-regexps'.\n\
3841 Those variables take precedence over this one.");
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\
3846 If a buffer name matches one of these regexps, it gets its own frame.\n\
3847 Displaying a buffer whose name is in this list makes a special frame for it\n\
3848 using `special-display-function'.\n\
3849 \n\
3850 An element of the list can be a list instead of just a string.\n\
3851 There are two ways to use a list as an element:\n\
3852 (REGEXP FRAME-PARAMETERS...) (REGEXP FUNCTION OTHER-ARGS...)\n\
3853 In the first case, FRAME-PARAMETERS are used to create the frame.\n\
3854 In the latter case, FUNCTION is called with the buffer as first argument,\n\
3855 followed by OTHER-ARGS--it can display the buffer in any way it likes.\n\
3856 All this is done by the function found in `special-display-function'.\n\
3857 \n\
3858 If this variable appears \"not to work\", because you add a regexp to it\n\
3859 but the matching buffers still appear in the selected window, look at the\n\
3860 values of `same-window-buffer-names' and `same-window-regexps'.\n\
3861 Those variables take precedence over this one.");
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\
3866 It is called with two arguments, the buffer and optional buffer specific\n\
3867 data, and should return a window displaying that buffer.\n\
3868 The default value makes a separate frame for the buffer,\n\
3869 using `special-display-frame-alist' to specify the frame parameters.\n\
3870 \n\
3871 A buffer is special if its is listed in `special-display-buffer-names'\n\
3872 or matches a regexp in `special-display-regexps'.");
3873 Vspecial_display_function = Qnil;
3874
3875 DEFVAR_LISP ("same-window-buffer-names", &Vsame_window_buffer_names,
3876 "*List of buffer names that should appear in the selected window.\n\
3877 Displaying one of these buffers using `display-buffer' or `pop-to-buffer'\n\
3878 switches to it in the selected window, rather than making it appear\n\
3879 in some other window.\n\
3880 \n\
3881 An element of the list can be a cons cell instead of just a string.\n\
3882 Then the car must be a string, which specifies the buffer name.\n\
3883 This is for compatibility with `special-display-buffer-names';\n\
3884 the cdr of the cons cell is ignored.\n\
3885 \n\
3886 See 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\
3891 If a buffer name matches one of these regexps, then displaying it\n\
3892 using `display-buffer' or `pop-to-buffer' switches to it\n\
3893 in the selected window, rather than making it appear in some other window.\n\
3894 \n\
3895 An element of the list can be a cons cell instead of just a string.\n\
3896 Then the car must be a string, which specifies the buffer name.\n\
3897 This is for compatibility with `special-display-buffer-names';\n\
3898 the cdr of the cons cell is ignored.\n\
3899 \n\
3900 See also `same-window-buffer-names'.");
3901 Vsame_window_regexps = Qnil;
3902
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\
3913 If 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
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
3929 DEFVAR_LISP ("window-configuration-change-hook",
3930 &Vwindow_configuration_change_hook,
3931 "Functions to call when window configuration changes.\n\
3932 The selected frame is the one whose configuration has changed.");
3933 Vwindow_configuration_change_hook = Qnil;
3934
3935 defsubr (&Sselected_window);
3936 defsubr (&Sminibuffer_window);
3937 defsubr (&Swindow_minibuffer_p);
3938 defsubr (&Swindowp);
3939 defsubr (&Swindow_live_p);
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);
3946 defsubr (&Swindow_redisplay_end_trigger);
3947 defsubr (&Sset_window_redisplay_end_trigger);
3948 defsubr (&Swindow_edges);
3949 defsubr (&Scoordinates_in_window_p);
3950 defsubr (&Swindow_at);
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);
3957 defsubr (&Sset_window_dedicated_p);
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);
3972 defsubr (&Sspecial_display_p);
3973 defsubr (&Ssame_window_p);
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);
3982 defsubr (&Sother_window_for_scrolling);
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
3992 keys_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 }