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