diff options
| author | Stefan Monnier | 2007-10-02 21:55:27 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2007-10-02 21:55:27 +0000 |
| commit | d0fdb6daaec286bd55dd92e998c11beceda189bd (patch) | |
| tree | 354d035730ec1bd27b3db9713b732e78e16cbe85 /src/frame.h | |
| parent | 878f97ffedc5b4fc785beac809c3d4392f531eca (diff) | |
| download | emacs-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/frame.h')
| -rw-r--r-- | src/frame.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.h b/src/frame.h index 78657958014..c8463625cc9 100644 --- a/src/frame.h +++ b/src/frame.h | |||
| @@ -74,7 +74,7 @@ struct terminal; | |||
| 74 | 74 | ||
| 75 | struct frame | 75 | struct frame |
| 76 | { | 76 | { |
| 77 | EMACS_INT size; | 77 | EMACS_UINT size; |
| 78 | struct Lisp_Vector *next; | 78 | struct Lisp_Vector *next; |
| 79 | 79 | ||
| 80 | /* All Lisp_Object components must come first. | 80 | /* All Lisp_Object components must come first. |