From: Gerd Moellmann Date: Sat, 21 Aug 1999 19:30:11 +0000 (+0000) Subject: Add function prototypes. X-Git-Tag: emacs-pretest-21.0.90~7088 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=986113dff2f9910849c7f0d356467becea1adec4;p=emacs.git Add function prototypes. Add function prototypes and extern declarations for new functions and variables. --- diff --git a/src/lisp.h b/src/lisp.h index fdf351553d4..14a985f0d12 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -1918,6 +1918,14 @@ extern void syms_of_display P_ ((void)); extern Lisp_Object Qinhibit_redisplay; extern Lisp_Object Vmessage_log_max; extern int message_enable_multibyte; +extern Lisp_Object echo_area_buffer[2]; +extern void setup_echo_area_for_printing P_ ((int)); +extern int push_message P_ ((void)); +extern void pop_message P_ ((void)); +extern void restore_message P_ ((void)); +extern Lisp_Object current_message P_ ((void)); +extern void set_message P_ ((char *s, Lisp_Object, int, int)); +extern void clear_message P_ ((int, int)); extern void message P_ ((/* char *, ... */)); extern void message_nolog P_ ((/* char *, ... */)); extern void message1 P_ ((char *)); @@ -2116,6 +2124,7 @@ extern void init_eval P_ ((void)); extern void syms_of_eval P_ ((void)); /* Defined in editfns.c */ +EXFUN (Fcurrent_message, 0); EXFUN (Fgoto_char, 1); EXFUN (Fpoint_min_marker, 0); EXFUN (Fpoint_max_marker, 0); @@ -2163,6 +2172,7 @@ extern void syms_of_editfns P_ ((void)); /* defined in buffer.c */ extern void nsberror P_ ((Lisp_Object)); +EXFUN (Fset_buffer_multibyte, 1); EXFUN (Foverlay_start, 1); EXFUN (Foverlay_end, 1); extern void adjust_overlays_for_insert P_ ((int, int));