aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2001-02-28 13:27:04 +0000
committerGerd Moellmann2001-02-28 13:27:04 +0000
commit42cc5ba46326b2462a1ed42df41e8dcd96ee2c77 (patch)
tree10f93376ac806cb61bd2399433edf7ab06eb2fa8 /src
parentfc3dc40cc59b779eb6074e7dade9146a7fd9c06e (diff)
downloademacs-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.h7
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);
2219EXFUN (Fmake_char_table, 2); 2219EXFUN (Fmake_char_table, 2);
2220extern Lisp_Object make_sub_char_table P_ ((Lisp_Object)); 2220extern Lisp_Object make_sub_char_table P_ ((Lisp_Object));
2221extern Lisp_Object Qchar_table_extra_slots; 2221extern Lisp_Object Qchar_table_extra_slots;
2222extern struct Lisp_Vector *allocate_vectorlike P_ ((EMACS_INT)); 2222extern struct Lisp_Vector *allocate_vector P_ ((EMACS_INT));
2223extern struct Lisp_Vector *allocate_other_vector P_ ((EMACS_INT));
2224extern struct Lisp_Hash_Table *allocate_hash_table P_ ((void));
2225extern struct window *allocate_window P_ ((void));
2226extern struct frame *allocate_frame P_ ((void));
2227extern struct Lisp_Process *allocate_process P_ ((void));
2223extern int gc_in_progress; 2228extern int gc_in_progress;
2224extern Lisp_Object make_float P_ ((double)); 2229extern Lisp_Object make_float P_ ((double));
2225extern void display_malloc_warning P_ ((void)); 2230extern void display_malloc_warning P_ ((void));