aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love1999-09-19 15:21:45 +0000
committerDave Love1999-09-19 15:21:45 +0000
commit4baa6f88d0855b228a414bc45353608971864591 (patch)
treee021d9ad17dda3be79dba6f9a77f8ee0b27ab89b
parent33711cc91c77b4c55ddd61c7c27cbbc867d5b374 (diff)
downloademacs-4baa6f88d0855b228a414bc45353608971864591.tar.gz
emacs-4baa6f88d0855b228a414bc45353608971864591.zip
Declare Fcurrent_message, Fmake_temp_name, read_bytecode_char,
Fx_hide_busy_cursor, getloadavg.
-rw-r--r--src/lisp.h7
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));
2206extern Lisp_Object make_buffer_string_both P_ ((int, int, int, int, int)); 2206extern Lisp_Object make_buffer_string_both P_ ((int, int, int, int, int));
2207extern void init_editfns P_ ((void)); 2207extern void init_editfns P_ ((void));
2208extern void syms_of_editfns P_ ((void)); 2208extern void syms_of_editfns P_ ((void));
2209EXFUN (Fcurrent_message, 0);
2209 2210
2210/* defined in buffer.c */ 2211/* defined in buffer.c */
2211extern void nsberror P_ ((Lisp_Object)); 2212extern void nsberror P_ ((Lisp_Object));
@@ -2292,6 +2293,7 @@ extern Lisp_Object close_file_unwind P_ ((Lisp_Object));
2292extern void report_file_error P_ ((char *, Lisp_Object)); 2293extern void report_file_error P_ ((char *, Lisp_Object));
2293extern int internal_delete_file P_ ((Lisp_Object)); 2294extern int internal_delete_file P_ ((Lisp_Object));
2294extern void syms_of_fileio P_ ((void)); 2295extern void syms_of_fileio P_ ((void));
2296EXFUN (Fmake_temp_name, 1);
2295extern void init_fileio_once P_ ((void)); 2297extern 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);
2545extern Lisp_Object read_doc_string P_ ((Lisp_Object)); 2547extern Lisp_Object read_doc_string P_ ((Lisp_Object));
2546extern Lisp_Object get_doc_string P_ ((Lisp_Object, int, int)); 2548extern Lisp_Object get_doc_string P_ ((Lisp_Object, int, int));
2547extern void syms_of_doc P_ ((void)); 2549extern void syms_of_doc P_ ((void));
2550extern int read_bytecode_char P_ ((int));
2548 2551
2549/* defined in bytecode.c */ 2552/* defined in bytecode.c */
2550extern Lisp_Object Qbytecode; 2553extern Lisp_Object Qbytecode;
@@ -2662,6 +2665,7 @@ extern int getloadavg P_ ((double *, int));
2662/* Defined in xfns.c */ 2665/* Defined in xfns.c */
2663extern void x_set_tool_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object)); 2666extern void x_set_tool_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
2664extern void syms_of_xfns P_ ((void)); 2667extern void syms_of_xfns P_ ((void));
2668EXFUN (Fx_hide_busy_cursor, 1);
2665extern void init_xfns P_ ((void)); 2669extern 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 */
2672extern void syms_of_xterm P_ ((void)); 2676extern void syms_of_xterm P_ ((void));
2677
2678/* Defined in getloadavg.c */
2679extern 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. */