aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>1999-08-21 19:30:11 +0000
committerGerd Moellmann <[email protected]>1999-08-21 19:30:11 +0000
commit986113dff2f9910849c7f0d356467becea1adec4 (patch)
tree2ffa9cd7d06ecb11b056121458127dafd2d1b977 /src/lisp.h
parent985f9f6642aa4db5649425c2b53d31f34c0e425c (diff)
Add function prototypes.
Add function prototypes and extern declarations for new functions and variables.
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/lisp.h b/src/lisp.h
index fdf351553d..14a985f0d1 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));