diff options
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/window.c b/src/window.c index 3e43d8386b6..7a026b3a1c7 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -82,6 +82,7 @@ static int foreach_window_1 (struct window *, | |||
| 82 | int (* fn) (struct window *, void *), | 82 | int (* fn) (struct window *, void *), |
| 83 | void *); | 83 | void *); |
| 84 | static Lisp_Object window_list_1 (Lisp_Object, Lisp_Object, Lisp_Object); | 84 | static Lisp_Object window_list_1 (Lisp_Object, Lisp_Object, Lisp_Object); |
| 85 | static int resize_window_check (struct window *, int); | ||
| 85 | static void resize_window_apply (struct window *, int); | 86 | static void resize_window_apply (struct window *, int); |
| 86 | static Lisp_Object select_window (Lisp_Object, Lisp_Object, int); | 87 | static Lisp_Object select_window (Lisp_Object, Lisp_Object, int); |
| 87 | 88 | ||
| @@ -2632,7 +2633,7 @@ selected frame and no others. */) | |||
| 2632 | return Qnil; | 2633 | return Qnil; |
| 2633 | } | 2634 | } |
| 2634 | 2635 | ||
| 2635 | Lisp_Object | 2636 | static Lisp_Object |
| 2636 | resize_root_window (Lisp_Object window, Lisp_Object delta, Lisp_Object horizontal, Lisp_Object ignore) | 2637 | resize_root_window (Lisp_Object window, Lisp_Object delta, Lisp_Object horizontal, Lisp_Object ignore) |
| 2637 | { | 2638 | { |
| 2638 | return call4 (Qresize_root_window, window, delta, horizontal, ignore); | 2639 | return call4 (Qresize_root_window, window, delta, horizontal, ignore); |
| @@ -3522,7 +3523,7 @@ Note: This function does not operate on any subwindows of WINDOW. */) | |||
| 3522 | Note: This function does not check any of `window-fixed-size-p', | 3523 | Note: This function does not check any of `window-fixed-size-p', |
| 3523 | `window-min-height' or `window-min-width'. It does check that window | 3524 | `window-min-height' or `window-min-width'. It does check that window |
| 3524 | sizes do not drop below one line (two columns). */ | 3525 | sizes do not drop below one line (two columns). */ |
| 3525 | int | 3526 | static int |
| 3526 | resize_window_check (struct window *w, int horflag) | 3527 | resize_window_check (struct window *w, int horflag) |
| 3527 | { | 3528 | { |
| 3528 | struct window *c; | 3529 | struct window *c; |