diff options
| author | Gerd Moellmann | 1999-08-21 19:30:11 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-08-21 19:30:11 +0000 |
| commit | 986113dff2f9910849c7f0d356467becea1adec4 (patch) | |
| tree | 2ffa9cd7d06ecb11b056121458127dafd2d1b977 /src | |
| parent | 985f9f6642aa4db5649425c2b53d31f34c0e425c (diff) | |
| download | emacs-986113dff2f9910849c7f0d356467becea1adec4.tar.gz emacs-986113dff2f9910849c7f0d356467becea1adec4.zip | |
Add function prototypes.
Add function prototypes and extern declarations for
new functions and variables.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 10 |
1 files changed, 10 insertions, 0 deletions
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)); | |||
| 1918 | extern Lisp_Object Qinhibit_redisplay; | 1918 | extern Lisp_Object Qinhibit_redisplay; |
| 1919 | extern Lisp_Object Vmessage_log_max; | 1919 | extern Lisp_Object Vmessage_log_max; |
| 1920 | extern int message_enable_multibyte; | 1920 | extern int message_enable_multibyte; |
| 1921 | extern Lisp_Object echo_area_buffer[2]; | ||
| 1922 | extern void setup_echo_area_for_printing P_ ((int)); | ||
| 1923 | extern int push_message P_ ((void)); | ||
| 1924 | extern void pop_message P_ ((void)); | ||
| 1925 | extern void restore_message P_ ((void)); | ||
| 1926 | extern Lisp_Object current_message P_ ((void)); | ||
| 1927 | extern void set_message P_ ((char *s, Lisp_Object, int, int)); | ||
| 1928 | extern void clear_message P_ ((int, int)); | ||
| 1921 | extern void message P_ ((/* char *, ... */)); | 1929 | extern void message P_ ((/* char *, ... */)); |
| 1922 | extern void message_nolog P_ ((/* char *, ... */)); | 1930 | extern void message_nolog P_ ((/* char *, ... */)); |
| 1923 | extern void message1 P_ ((char *)); | 1931 | extern void message1 P_ ((char *)); |
| @@ -2116,6 +2124,7 @@ extern void init_eval P_ ((void)); | |||
| 2116 | extern void syms_of_eval P_ ((void)); | 2124 | extern void syms_of_eval P_ ((void)); |
| 2117 | 2125 | ||
| 2118 | /* Defined in editfns.c */ | 2126 | /* Defined in editfns.c */ |
| 2127 | EXFUN (Fcurrent_message, 0); | ||
| 2119 | EXFUN (Fgoto_char, 1); | 2128 | EXFUN (Fgoto_char, 1); |
| 2120 | EXFUN (Fpoint_min_marker, 0); | 2129 | EXFUN (Fpoint_min_marker, 0); |
| 2121 | EXFUN (Fpoint_max_marker, 0); | 2130 | EXFUN (Fpoint_max_marker, 0); |
| @@ -2163,6 +2172,7 @@ extern void syms_of_editfns P_ ((void)); | |||
| 2163 | 2172 | ||
| 2164 | /* defined in buffer.c */ | 2173 | /* defined in buffer.c */ |
| 2165 | extern void nsberror P_ ((Lisp_Object)); | 2174 | extern void nsberror P_ ((Lisp_Object)); |
| 2175 | EXFUN (Fset_buffer_multibyte, 1); | ||
| 2166 | EXFUN (Foverlay_start, 1); | 2176 | EXFUN (Foverlay_start, 1); |
| 2167 | EXFUN (Foverlay_end, 1); | 2177 | EXFUN (Foverlay_end, 1); |
| 2168 | extern void adjust_overlays_for_insert P_ ((int, int)); | 2178 | extern void adjust_overlays_for_insert P_ ((int, int)); |