diff options
| author | Gerd Moellmann | 1999-09-16 20:20:01 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-09-16 20:20:01 +0000 |
| commit | 15b0ced5c270350656a78f16b5c65348b0aa8956 (patch) | |
| tree | 66949f46970dbd1f7e86bbbb453590e683d0cb4a /src | |
| parent | e39adcdab9eb38a71322734425db39568852ca9b (diff) | |
| download | emacs-15b0ced5c270350656a78f16b5c65348b0aa8956.tar.gz emacs-15b0ced5c270350656a78f16b5c65348b0aa8956.zip | |
Add prototype for uninterrupt_malloc, memory_warnings,
init_fileio_once, syms_of_sound, init_xfns, init_fns
init_sound, check_message_stack.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/lisp.h b/src/lisp.h index e13a55cddb6..e6b79c7477f 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -1806,6 +1806,7 @@ void hash_put P_ ((struct Lisp_Hash_Table *, Lisp_Object, Lisp_Object, | |||
| 1806 | void hash_remove P_ ((struct Lisp_Hash_Table *, Lisp_Object)); | 1806 | void hash_remove P_ ((struct Lisp_Hash_Table *, Lisp_Object)); |
| 1807 | void hash_clear P_ ((struct Lisp_Hash_Table *)); | 1807 | void hash_clear P_ ((struct Lisp_Hash_Table *)); |
| 1808 | void remove_hash_entry P_ ((struct Lisp_Hash_Table *, int)); | 1808 | void remove_hash_entry P_ ((struct Lisp_Hash_Table *, int)); |
| 1809 | extern void init_fns P_ ((void)); | ||
| 1809 | EXFUN (Fsxhash, 1); | 1810 | EXFUN (Fsxhash, 1); |
| 1810 | EXFUN (Fmake_hash_table, MANY); | 1811 | EXFUN (Fmake_hash_table, MANY); |
| 1811 | EXFUN (Fcopy_hash_table, 1); | 1812 | EXFUN (Fcopy_hash_table, 1); |
| @@ -1944,6 +1945,7 @@ extern Lisp_Object Qinhibit_redisplay; | |||
| 1944 | extern Lisp_Object Vmessage_log_max; | 1945 | extern Lisp_Object Vmessage_log_max; |
| 1945 | extern int message_enable_multibyte; | 1946 | extern int message_enable_multibyte; |
| 1946 | extern Lisp_Object echo_area_buffer[2]; | 1947 | extern Lisp_Object echo_area_buffer[2]; |
| 1948 | extern void check_message_stack P_ ((void)); | ||
| 1947 | extern void setup_echo_area_for_printing P_ ((int)); | 1949 | extern void setup_echo_area_for_printing P_ ((int)); |
| 1948 | extern int push_message P_ ((void)); | 1950 | extern int push_message P_ ((void)); |
| 1949 | extern void pop_message P_ ((void)); | 1951 | extern void pop_message P_ ((void)); |
| @@ -1972,7 +1974,15 @@ extern void prepare_menu_bars P_ ((void)); | |||
| 1972 | extern void syms_of_xdisp P_ ((void)); | 1974 | extern void syms_of_xdisp P_ ((void)); |
| 1973 | extern void init_xdisp P_ ((void)); | 1975 | extern void init_xdisp P_ ((void)); |
| 1974 | 1976 | ||
| 1977 | /* Defined in vm-limit.c. */ | ||
| 1978 | #ifdef __STDC__ | ||
| 1979 | extern void memory_warnings P_ ((void *, void (*warnfun) ())); | ||
| 1980 | #else | ||
| 1981 | extern void memory_warnings P_ ((char *, void (*warnfun) ())); | ||
| 1982 | #endif | ||
| 1983 | |||
| 1975 | /* Defined in alloc.c */ | 1984 | /* Defined in alloc.c */ |
| 1985 | extern void uninterrupt_malloc P_ ((void)); | ||
| 1976 | extern void malloc_warning P_ ((char *)); | 1986 | extern void malloc_warning P_ ((char *)); |
| 1977 | extern void memory_full P_ ((void)); | 1987 | extern void memory_full P_ ((void)); |
| 1978 | extern void buffer_memory_full P_ ((void)); | 1988 | extern void buffer_memory_full P_ ((void)); |
| @@ -2282,6 +2292,7 @@ extern Lisp_Object close_file_unwind P_ ((Lisp_Object)); | |||
| 2282 | extern void report_file_error P_ ((char *, Lisp_Object)); | 2292 | extern void report_file_error P_ ((char *, Lisp_Object)); |
| 2283 | extern int internal_delete_file P_ ((Lisp_Object)); | 2293 | extern int internal_delete_file P_ ((Lisp_Object)); |
| 2284 | extern void syms_of_fileio P_ ((void)); | 2294 | extern void syms_of_fileio P_ ((void)); |
| 2295 | extern void init_fileio_once P_ ((void)); | ||
| 2285 | 2296 | ||
| 2286 | /* Defined in abbrev.c */ | 2297 | /* Defined in abbrev.c */ |
| 2287 | 2298 | ||
| @@ -2612,6 +2623,11 @@ extern void lock_file P_ ((Lisp_Object)); | |||
| 2612 | extern void unlock_file P_ ((Lisp_Object)); | 2623 | extern void unlock_file P_ ((Lisp_Object)); |
| 2613 | extern void unlock_buffer P_ ((struct buffer *)); | 2624 | extern void unlock_buffer P_ ((struct buffer *)); |
| 2614 | extern void syms_of_filelock P_ ((void)); | 2625 | extern void syms_of_filelock P_ ((void)); |
| 2626 | extern void init_filelock P_ ((void)); | ||
| 2627 | |||
| 2628 | /* Defined in sound.c */ | ||
| 2629 | extern void syms_of_sound P_ ((void)); | ||
| 2630 | extern void init_sound P_ ((void)); | ||
| 2615 | 2631 | ||
| 2616 | /* Defined in category.c */ | 2632 | /* Defined in category.c */ |
| 2617 | extern void init_category_once P_ ((void)); | 2633 | extern void init_category_once P_ ((void)); |
| @@ -2646,6 +2662,7 @@ extern int getloadavg P_ ((double *, int)); | |||
| 2646 | /* Defined in xfns.c */ | 2662 | /* Defined in xfns.c */ |
| 2647 | extern void x_set_tool_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object)); | 2663 | extern void x_set_tool_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object)); |
| 2648 | extern void syms_of_xfns P_ ((void)); | 2664 | extern void syms_of_xfns P_ ((void)); |
| 2665 | extern void init_xfns P_ ((void)); | ||
| 2649 | #endif | 2666 | #endif |
| 2650 | 2667 | ||
| 2651 | /* Defined in xselect.c */ | 2668 | /* Defined in xselect.c */ |