aboutsummaryrefslogtreecommitdiffstats
path: root/src/termhooks.h
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2007-10-02 21:55:27 +0000
committerStefan Monnier <[email protected]>2007-10-02 21:55:27 +0000
commitd0fdb6daaec286bd55dd92e998c11beceda189bd (patch)
tree354d035730ec1bd27b3db9713b732e78e16cbe85 /src/termhooks.h
parent878f97ffedc5b4fc785beac809c3d4392f531eca (diff)
* 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/termhooks.h')
-rw-r--r--src/termhooks.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/termhooks.h b/src/termhooks.h
index 3368c906a2..7f58114c21 100644
--- a/src/termhooks.h
+++ b/src/termhooks.h
@@ -317,7 +317,7 @@ struct terminal
{
/* The first two fields are really the header of a vector */
/* The terminal code does not refer to them. */
- EMACS_INT size;
+ EMACS_UINT size;
struct Lisp_Vector *vec_next;
/* Parameter alist of this terminal. */