diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h index 966e3b929d8..7bfcd718c33 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -2219,7 +2219,12 @@ EXFUN (Fmake_bool_vector, 2); | |||
| 2219 | EXFUN (Fmake_char_table, 2); | 2219 | EXFUN (Fmake_char_table, 2); |
| 2220 | extern Lisp_Object make_sub_char_table P_ ((Lisp_Object)); | 2220 | extern Lisp_Object make_sub_char_table P_ ((Lisp_Object)); |
| 2221 | extern Lisp_Object Qchar_table_extra_slots; | 2221 | extern Lisp_Object Qchar_table_extra_slots; |
| 2222 | extern struct Lisp_Vector *allocate_vectorlike P_ ((EMACS_INT)); | 2222 | extern struct Lisp_Vector *allocate_vector P_ ((EMACS_INT)); |
| 2223 | extern struct Lisp_Vector *allocate_other_vector P_ ((EMACS_INT)); | ||
| 2224 | extern struct Lisp_Hash_Table *allocate_hash_table P_ ((void)); | ||
| 2225 | extern struct window *allocate_window P_ ((void)); | ||
| 2226 | extern struct frame *allocate_frame P_ ((void)); | ||
| 2227 | extern struct Lisp_Process *allocate_process P_ ((void)); | ||
| 2223 | extern int gc_in_progress; | 2228 | extern int gc_in_progress; |
| 2224 | extern Lisp_Object make_float P_ ((double)); | 2229 | extern Lisp_Object make_float P_ ((double)); |
| 2225 | extern void display_malloc_warning P_ ((void)); | 2230 | extern void display_malloc_warning P_ ((void)); |