diff options
| author | Gerd Moellmann | 2001-02-28 13:27:04 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-02-28 13:27:04 +0000 |
| commit | 42cc5ba46326b2462a1ed42df41e8dcd96ee2c77 (patch) | |
| tree | 10f93376ac806cb61bd2399433edf7ab06eb2fa8 /src | |
| parent | fc3dc40cc59b779eb6074e7dade9146a7fd9c06e (diff) | |
| download | emacs-42cc5ba46326b2462a1ed42df41e8dcd96ee2c77.tar.gz emacs-42cc5ba46326b2462a1ed42df41e8dcd96ee2c77.zip | |
(allocate_vectorlike): Remove prototype.
(allocate_vector, allocate_other_vector, allocate_frame)
(allocate_window, allocate_process, allocate_hash_table):
Add prototypes.
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)); |