diff options
| author | Dave Love | 1999-09-19 15:21:45 +0000 |
|---|---|---|
| committer | Dave Love | 1999-09-19 15:21:45 +0000 |
| commit | 4baa6f88d0855b228a414bc45353608971864591 (patch) | |
| tree | e021d9ad17dda3be79dba6f9a77f8ee0b27ab89b /src | |
| parent | 33711cc91c77b4c55ddd61c7c27cbbc867d5b374 (diff) | |
| download | emacs-4baa6f88d0855b228a414bc45353608971864591.tar.gz emacs-4baa6f88d0855b228a414bc45353608971864591.zip | |
Declare Fcurrent_message, Fmake_temp_name, read_bytecode_char,
Fx_hide_busy_cursor, getloadavg.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lisp.h b/src/lisp.h index e6b79c7477f..943fc0fdb30 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -2206,6 +2206,7 @@ extern Lisp_Object make_buffer_string P_ ((int, int, int)); | |||
| 2206 | extern Lisp_Object make_buffer_string_both P_ ((int, int, int, int, int)); | 2206 | extern Lisp_Object make_buffer_string_both P_ ((int, int, int, int, int)); |
| 2207 | extern void init_editfns P_ ((void)); | 2207 | extern void init_editfns P_ ((void)); |
| 2208 | extern void syms_of_editfns P_ ((void)); | 2208 | extern void syms_of_editfns P_ ((void)); |
| 2209 | EXFUN (Fcurrent_message, 0); | ||
| 2209 | 2210 | ||
| 2210 | /* defined in buffer.c */ | 2211 | /* defined in buffer.c */ |
| 2211 | extern void nsberror P_ ((Lisp_Object)); | 2212 | extern void nsberror P_ ((Lisp_Object)); |
| @@ -2292,6 +2293,7 @@ extern Lisp_Object close_file_unwind P_ ((Lisp_Object)); | |||
| 2292 | extern void report_file_error P_ ((char *, Lisp_Object)); | 2293 | extern void report_file_error P_ ((char *, Lisp_Object)); |
| 2293 | extern int internal_delete_file P_ ((Lisp_Object)); | 2294 | extern int internal_delete_file P_ ((Lisp_Object)); |
| 2294 | extern void syms_of_fileio P_ ((void)); | 2295 | extern void syms_of_fileio P_ ((void)); |
| 2296 | EXFUN (Fmake_temp_name, 1); | ||
| 2295 | extern void init_fileio_once P_ ((void)); | 2297 | extern void init_fileio_once P_ ((void)); |
| 2296 | 2298 | ||
| 2297 | /* Defined in abbrev.c */ | 2299 | /* Defined in abbrev.c */ |
| @@ -2545,6 +2547,7 @@ EXFUN (Fdocumentation_property, 3); | |||
| 2545 | extern Lisp_Object read_doc_string P_ ((Lisp_Object)); | 2547 | extern Lisp_Object read_doc_string P_ ((Lisp_Object)); |
| 2546 | extern Lisp_Object get_doc_string P_ ((Lisp_Object, int, int)); | 2548 | extern Lisp_Object get_doc_string P_ ((Lisp_Object, int, int)); |
| 2547 | extern void syms_of_doc P_ ((void)); | 2549 | extern void syms_of_doc P_ ((void)); |
| 2550 | extern int read_bytecode_char P_ ((int)); | ||
| 2548 | 2551 | ||
| 2549 | /* defined in bytecode.c */ | 2552 | /* defined in bytecode.c */ |
| 2550 | extern Lisp_Object Qbytecode; | 2553 | extern Lisp_Object Qbytecode; |
| @@ -2662,6 +2665,7 @@ extern int getloadavg P_ ((double *, int)); | |||
| 2662 | /* Defined in xfns.c */ | 2665 | /* Defined in xfns.c */ |
| 2663 | extern void x_set_tool_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object)); | 2666 | extern void x_set_tool_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object)); |
| 2664 | extern void syms_of_xfns P_ ((void)); | 2667 | extern void syms_of_xfns P_ ((void)); |
| 2668 | EXFUN (Fx_hide_busy_cursor, 1); | ||
| 2665 | extern void init_xfns P_ ((void)); | 2669 | extern void init_xfns P_ ((void)); |
| 2666 | #endif | 2670 | #endif |
| 2667 | 2671 | ||
| @@ -2670,6 +2674,9 @@ extern void syms_of_xselect P_ ((void)); | |||
| 2670 | 2674 | ||
| 2671 | /* Defined in xterm.c */ | 2675 | /* Defined in xterm.c */ |
| 2672 | extern void syms_of_xterm P_ ((void)); | 2676 | extern void syms_of_xterm P_ ((void)); |
| 2677 | |||
| 2678 | /* Defined in getloadavg.c */ | ||
| 2679 | extern int getloadavg P_ ((double [], int)); | ||
| 2673 | 2680 | ||
| 2674 | /* Nonzero means Emacs has already been initialized. | 2681 | /* Nonzero means Emacs has already been initialized. |
| 2675 | Used during startup to detect startup of dumped Emacs. */ | 2682 | Used during startup to detect startup of dumped Emacs. */ |