diff options
Diffstat (limited to 'src/window.h')
| -rw-r--r-- | src/window.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/window.h b/src/window.h index dcef37abb4c..4af8dbf1591 100644 --- a/src/window.h +++ b/src/window.h | |||
| @@ -891,10 +891,10 @@ extern Lisp_Object Vmouse_event; | |||
| 891 | 891 | ||
| 892 | extern Lisp_Object make_window (void); | 892 | extern Lisp_Object make_window (void); |
| 893 | extern Lisp_Object window_from_coordinates (struct frame *, int, int, | 893 | extern Lisp_Object window_from_coordinates (struct frame *, int, int, |
| 894 | enum window_part *, int); | 894 | enum window_part *, bool); |
| 895 | extern void resize_frame_windows (struct frame *, int, int); | 895 | extern void resize_frame_windows (struct frame *, int, bool); |
| 896 | extern void delete_all_child_windows (Lisp_Object); | 896 | extern void delete_all_child_windows (Lisp_Object); |
| 897 | extern void freeze_window_starts (struct frame *, int); | 897 | extern void freeze_window_starts (struct frame *, bool); |
| 898 | extern void grow_mini_window (struct window *, int); | 898 | extern void grow_mini_window (struct window *, int); |
| 899 | extern void shrink_mini_window (struct window *); | 899 | extern void shrink_mini_window (struct window *); |
| 900 | extern int window_relative_x_coord (struct window *, enum window_part, int); | 900 | extern int window_relative_x_coord (struct window *, enum window_part, int); |
| @@ -906,7 +906,7 @@ void run_window_configuration_change_hook (struct frame *f); | |||
| 906 | it's not allowed. */ | 906 | it's not allowed. */ |
| 907 | 907 | ||
| 908 | void set_window_buffer (Lisp_Object window, Lisp_Object buffer, | 908 | void set_window_buffer (Lisp_Object window, Lisp_Object buffer, |
| 909 | int run_hooks_p, int keep_margins_p); | 909 | bool run_hooks_p, bool keep_margins_p); |
| 910 | 910 | ||
| 911 | /* This is the window where the echo area message was displayed. It | 911 | /* This is the window where the echo area message was displayed. It |
| 912 | is always a minibuffer window, but it may not be the same window | 912 | is always a minibuffer window, but it may not be the same window |