summaryrefslogtreecommitdiff
path: root/src/window.h
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2007-10-02 21:55:27 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2007-10-02 21:55:27 +0000
commit40b90196d3fbfd8ed23a6e7ba499a1f45a2ec746 (patch)
tree52b10d46dba857ae57273bca1fe1eefd2a14a381 /src/window.h
parentb100397a0a2f590ea734f344ccaf1247c465c537 (diff)
downloademacs-40b90196d3fbfd8ed23a6e7ba499a1f45a2ec746.tar.gz
* 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/window.h')
-rw-r--r--src/window.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.h b/src/window.h
index c9ef865c4f0..3b9107acaa2 100644
--- a/src/window.h
+++ b/src/window.h
@@ -92,7 +92,7 @@ struct window
{
/* The first two fields are really the header of a vector */
/* The window code does not refer to them. */
- EMACS_INT size;
+ EMACS_UINT size;
struct Lisp_Vector *vec_next;
/* The frame this window is on. */
Lisp_Object frame;