diff options
| author | Dmitry Antipov | 2013-03-18 17:21:12 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2013-03-18 17:21:12 +0400 |
| commit | 748fa866ad6f94d3c499f2f2ea41efbaf0dfc75f (patch) | |
| tree | 9f321a04c44c537bd9c8c535312d5f4be06940a5 /src/window.h | |
| parent | 24afc2e2d4a65552fb61e3094bb50447d5b460f2 (diff) | |
| download | emacs-748fa866ad6f94d3c499f2f2ea41efbaf0dfc75f.tar.gz emacs-748fa866ad6f94d3c499f2f2ea41efbaf0dfc75f.zip | |
* window.c (window_resize_check, window_resize_apply)
(window_from_coordinates, recombine_windows, set_window_buffer)
(make_parent_window, Fwindow_resize_apply, resize_frame_windows)
(Fsplit_window_internal, Fdelete_window_internal)
(freeze_window_starts): Use bool for booleans.
* window.h (window_frame_coordinates, resize_frame_windows)
(freeze_window_starts, set_window_buffer): Adjust prototypes.
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 |