diff options
| author | Miles Bader | 2007-12-06 09:51:45 +0000 |
|---|---|---|
| committer | Miles Bader | 2007-12-06 09:51:45 +0000 |
| commit | 0bd508417142ff377f34aec8dcec9438d9175c2c (patch) | |
| tree | 4d60fe09e5cebf7d79766b11e9cda8cc1c9dbb9b /src/lisp.h | |
| parent | 98fe991da804a42f53f6a5e84cd5eab18a82e181 (diff) | |
| parent | 9fb1ba8090da3528de56158a79bd3527d31c7f2f (diff) | |
| download | emacs-0bd508417142ff377f34aec8dcec9438d9175c2c.tar.gz emacs-0bd508417142ff377f34aec8dcec9438d9175c2c.zip | |
Merge from emacs--devo--0
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-294
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/lisp.h b/src/lisp.h index f4b93ff9dce..fb53f68b073 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -349,7 +349,8 @@ enum pvec_type | |||
| 349 | PVEC_HASH_TABLE = 0x40000, | 349 | PVEC_HASH_TABLE = 0x40000, |
| 350 | PVEC_TERMINAL = 0x80000, | 350 | PVEC_TERMINAL = 0x80000, |
| 351 | PVEC_SUB_CHAR_TABLE = 0x100000, | 351 | PVEC_SUB_CHAR_TABLE = 0x100000, |
| 352 | PVEC_TYPE_MASK = 0x1ffe00 | 352 | PVEC_OTHER = 0x200000, |
| 353 | PVEC_TYPE_MASK = 0x2ffe00 | ||
| 353 | 354 | ||
| 354 | #if 0 /* This is used to make the value of PSEUDOVECTOR_FLAG available to | 355 | #if 0 /* This is used to make the value of PSEUDOVECTOR_FLAG available to |
| 355 | GDB. It doesn't work on OS Alpha. Moved to a variable in | 356 | GDB. It doesn't work on OS Alpha. Moved to a variable in |
| @@ -1209,6 +1210,7 @@ struct Lisp_Buffer_Objfwd | |||
| 1209 | int type : 16; /* = Lisp_Misc_Buffer_Objfwd */ | 1210 | int type : 16; /* = Lisp_Misc_Buffer_Objfwd */ |
| 1210 | unsigned gcmarkbit : 1; | 1211 | unsigned gcmarkbit : 1; |
| 1211 | int spacer : 15; | 1212 | int spacer : 15; |
| 1213 | Lisp_Object slottype; /* Qnil, Lisp_Int, Lisp_Symbol, or Lisp_String. */ | ||
| 1212 | int offset; | 1214 | int offset; |
| 1213 | }; | 1215 | }; |
| 1214 | 1216 | ||
| @@ -2568,7 +2570,11 @@ EXFUN (Fmake_byte_code, MANY); | |||
| 2568 | EXFUN (Fmake_bool_vector, 2); | 2570 | EXFUN (Fmake_bool_vector, 2); |
| 2569 | extern Lisp_Object Qchar_table_extra_slots; | 2571 | extern Lisp_Object Qchar_table_extra_slots; |
| 2570 | extern struct Lisp_Vector *allocate_vector P_ ((EMACS_INT)); | 2572 | extern struct Lisp_Vector *allocate_vector P_ ((EMACS_INT)); |
| 2571 | extern struct Lisp_Vector *allocate_other_vector P_ ((EMACS_INT)); | 2573 | extern struct Lisp_Vector *allocate_pseudovector P_ ((int memlen, int lisplen, EMACS_INT tag)); |
| 2574 | #define ALLOCATE_PSEUDOVECTOR(typ,field,tag) \ | ||
| 2575 | ((typ*) \ | ||
| 2576 | allocate_pseudovector \ | ||
| 2577 | (VECSIZE (typ), PSEUDOVECSIZE (typ, field), tag)) | ||
| 2572 | extern struct Lisp_Hash_Table *allocate_hash_table P_ ((void)); | 2578 | extern struct Lisp_Hash_Table *allocate_hash_table P_ ((void)); |
| 2573 | extern struct window *allocate_window P_ ((void)); | 2579 | extern struct window *allocate_window P_ ((void)); |
| 2574 | extern struct frame *allocate_frame P_ ((void)); | 2580 | extern struct frame *allocate_frame P_ ((void)); |
| @@ -3245,7 +3251,7 @@ extern void syms_of_dired P_ ((void)); | |||
| 3245 | 3251 | ||
| 3246 | /* Defined in term.c */ | 3252 | /* Defined in term.c */ |
| 3247 | extern void syms_of_term P_ ((void)); | 3253 | extern void syms_of_term P_ ((void)); |
| 3248 | extern void fatal () NO_RETURN; | 3254 | extern void fatal P_ ((const char *msgid, ...)) NO_RETURN; |
| 3249 | 3255 | ||
| 3250 | /* Defined in terminal.c */ | 3256 | /* Defined in terminal.c */ |
| 3251 | extern void syms_of_terminal P_ ((void)); | 3257 | extern void syms_of_terminal P_ ((void)); |