aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.h
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/buffer.h
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/buffer.h')
-rw-r--r--src/buffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.h b/src/buffer.h
index ed99dc4ffb1..3d34e7c3217 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -455,7 +455,7 @@ struct buffer
455 455
456 Check out mark_buffer (alloc.c) to see why. */ 456 Check out mark_buffer (alloc.c) to see why. */
457 457
458 EMACS_INT size; 458 EMACS_UINT size;
459 459
460 /* Next buffer, in chain of all buffers including killed buffers. 460 /* Next buffer, in chain of all buffers including killed buffers.
461 This chain is used only for garbage collection, in order to 461 This chain is used only for garbage collection, in order to