diff options
Diffstat (limited to 'src/window.h')
| -rw-r--r-- | src/window.h | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/src/window.h b/src/window.h index dfb88b2cf3c..62ae43a999d 100644 --- a/src/window.h +++ b/src/window.h | |||
| @@ -27,8 +27,6 @@ INLINE_HEADER_BEGIN | |||
| 27 | # define WINDOW_INLINE INLINE | 27 | # define WINDOW_INLINE INLINE |
| 28 | #endif | 28 | #endif |
| 29 | 29 | ||
| 30 | extern Lisp_Object Qleft, Qright; | ||
| 31 | |||
| 32 | /* Windows are allocated as if they were vectors, but then the | 30 | /* Windows are allocated as if they were vectors, but then the |
| 33 | Lisp data type is changed to Lisp_Window. They are garbage | 31 | Lisp data type is changed to Lisp_Window. They are garbage |
| 34 | collected along with the vectors. | 32 | collected along with the vectors. |
| @@ -416,7 +414,16 @@ wset_window_end_vpos (struct window *w, Lisp_Object val) | |||
| 416 | { | 414 | { |
| 417 | w->window_end_vpos = val; | 415 | w->window_end_vpos = val; |
| 418 | } | 416 | } |
| 419 | 417 | WINDOW_INLINE void | |
| 418 | wset_prev_buffers (struct window *w, Lisp_Object val) | ||
| 419 | { | ||
| 420 | w->prev_buffers = val; | ||
| 421 | } | ||
| 422 | WINDOW_INLINE void | ||
| 423 | wset_next_buffers (struct window *w, Lisp_Object val) | ||
| 424 | { | ||
| 425 | w->next_buffers = val; | ||
| 426 | } | ||
| 420 | 427 | ||
| 421 | /* 1 if W is a minibuffer window. */ | 428 | /* 1 if W is a minibuffer window. */ |
| 422 | 429 | ||
| @@ -973,7 +980,7 @@ extern Lisp_Object Qwindowp, Qwindow_live_p; | |||
| 973 | extern Lisp_Object Vwindow_list; | 980 | extern Lisp_Object Vwindow_list; |
| 974 | 981 | ||
| 975 | extern struct window *decode_live_window (Lisp_Object); | 982 | extern struct window *decode_live_window (Lisp_Object); |
| 976 | extern int compare_window_configurations (Lisp_Object, Lisp_Object, int); | 983 | extern bool compare_window_configurations (Lisp_Object, Lisp_Object, bool); |
| 977 | extern void mark_window_cursors_off (struct window *); | 984 | extern void mark_window_cursors_off (struct window *); |
| 978 | extern int window_internal_height (struct window *); | 985 | extern int window_internal_height (struct window *); |
| 979 | extern int window_body_cols (struct window *w); | 986 | extern int window_body_cols (struct window *w); |