aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.c
diff options
context:
space:
mode:
authorStefan Monnier2007-10-02 21:55:27 +0000
committerStefan Monnier2007-10-02 21:55:27 +0000
commitd0fdb6daaec286bd55dd92e998c11beceda189bd (patch)
tree354d035730ec1bd27b3db9713b732e78e16cbe85 /src/window.c
parent878f97ffedc5b4fc785beac809c3d4392f531eca (diff)
downloademacs-d0fdb6daaec286bd55dd92e998c11beceda189bd.tar.gz
emacs-d0fdb6daaec286bd55dd92e998c11beceda189bd.zip
* window.h (struct window):
* window.c (struct save_window_data, struct saved_window): * termhooks.h (struct terminal): * process.h (struct Lisp_Process): * frame.h (struct frame): * buffer.h (struct buffer): * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table) (struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table): The size field of (pseudo)vectors is now unsigned. (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly.
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/window.c b/src/window.c
index ab9a15dde2a..bd1f55b1648 100644
--- a/src/window.c
+++ b/src/window.c
@@ -6049,7 +6049,7 @@ zero means top of window, negative means relative to bottom of window. */)
6049 6049
6050struct save_window_data 6050struct save_window_data
6051 { 6051 {
6052 EMACS_INT size_from_Lisp_Vector_struct; 6052 EMACS_UINT size;
6053 struct Lisp_Vector *next_from_Lisp_Vector_struct; 6053 struct Lisp_Vector *next_from_Lisp_Vector_struct;
6054 Lisp_Object frame_cols, frame_lines, frame_menu_bar_lines; 6054 Lisp_Object frame_cols, frame_lines, frame_menu_bar_lines;
6055 Lisp_Object frame_tool_bar_lines; 6055 Lisp_Object frame_tool_bar_lines;
@@ -6072,7 +6072,7 @@ struct save_window_data
6072struct saved_window 6072struct saved_window
6073{ 6073{
6074 /* these first two must agree with struct Lisp_Vector in lisp.h */ 6074 /* these first two must agree with struct Lisp_Vector in lisp.h */
6075 EMACS_INT size_from_Lisp_Vector_struct; 6075 EMACS_UINT size;
6076 struct Lisp_Vector *next_from_Lisp_Vector_struct; 6076 struct Lisp_Vector *next_from_Lisp_Vector_struct;
6077 6077
6078 Lisp_Object window; 6078 Lisp_Object window;