comparison src/termhooks.h @ 85022:96eb42c9e0e3

* 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.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Tue, 02 Oct 2007 21:55:27 +0000
parents 0440e26f0af7
children 5039706521c9
comparison
equal deleted inserted replaced
85021:a0c901e4e649 85022:96eb42c9e0e3
315 /* Terminal-local parameters. */ 315 /* Terminal-local parameters. */
316 struct terminal 316 struct terminal
317 { 317 {
318 /* The first two fields are really the header of a vector */ 318 /* The first two fields are really the header of a vector */
319 /* The terminal code does not refer to them. */ 319 /* The terminal code does not refer to them. */
320 EMACS_INT size; 320 EMACS_UINT size;
321 struct Lisp_Vector *vec_next; 321 struct Lisp_Vector *vec_next;
322 322
323 /* Parameter alist of this terminal. */ 323 /* Parameter alist of this terminal. */
324 Lisp_Object param_alist; 324 Lisp_Object param_alist;
325 325