From d0fdb6daaec286bd55dd92e998c11beceda189bd Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Tue, 2 Oct 2007 21:55:27 +0000 Subject: * 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. --- src/process.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/process.h') diff --git a/src/process.h b/src/process.h index eaed95fe4b7..c1b1bc01e37 100644 --- a/src/process.h +++ b/src/process.h @@ -34,7 +34,7 @@ Boston, MA 02110-1301, USA. */ struct Lisp_Process { - EMACS_INT size; + EMACS_UINT size; struct Lisp_Vector *v_next; /* Name of subprocess terminal. */ Lisp_Object tty_name; -- cgit v1.2.1