aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 762d34abb9c..2835302947f 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -833,7 +833,7 @@ struct Lisp_String
833 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=8546>. */ 833 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=8546>. */
834struct vectorlike_header 834struct vectorlike_header
835 { 835 {
836 EMACS_UINT size; 836 EMACS_INT size;
837 837
838 /* Pointer to the next vector-like object. It is generally a buffer or a 838 /* Pointer to the next vector-like object. It is generally a buffer or a
839 Lisp_Vector alias, so for convenience it is a union instead of a 839 Lisp_Vector alias, so for convenience it is a union instead of a
@@ -1028,7 +1028,7 @@ struct Lisp_Bool_Vector
1028 1028
1029struct Lisp_Subr 1029struct Lisp_Subr
1030 { 1030 {
1031 EMACS_UINT size; 1031 EMACS_INT size;
1032 union { 1032 union {
1033 Lisp_Object (*a0) (void); 1033 Lisp_Object (*a0) (void);
1034 Lisp_Object (*a1) (Lisp_Object); 1034 Lisp_Object (*a1) (Lisp_Object);