aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer <[email protected]>1994-09-17 03:14:26 +0000
committerKarl Heuer <[email protected]>1994-09-17 03:14:26 +0000
commit023c80d0514d4b7f64623836800b80c7d763250a (patch)
treeae169aa8c69b82941891a3ab81313500fd2d1d7d
parentc4df73f9c8151837299dc4e84a7b8213398cd7ba (diff)
Declare some functions.
-rw-r--r--src/buffer.h1
-rw-r--r--src/intervals.h1
-rw-r--r--src/lisp.h3
3 files changed, 5 insertions, 0 deletions
diff --git a/src/buffer.h b/src/buffer.h
index 01adaefe89..27dabaa0ac 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -369,6 +369,7 @@ extern void evaporate_overlays ();
extern Lisp_Object Fbuffer_name ();
extern Lisp_Object Fget_file_buffer ();
+extern Lisp_Object Fnext_overlay_change ();
/* Functions to call before and after each text change. */
extern Lisp_Object Vbefore_change_function;
diff --git a/src/intervals.h b/src/intervals.h
index bdf583d64d..d0d64261a3 100644
--- a/src/intervals.h
+++ b/src/intervals.h
@@ -207,6 +207,7 @@ extern Lisp_Object Vinhibit_point_motion_hooks;
/* Sticky properties */
extern Lisp_Object Qfront_sticky, Qrear_nonsticky;
+extern Lisp_Object Fget_char_property (), Fget_text_property ();
extern Lisp_Object Ftext_properties_at ();
extern Lisp_Object Fnext_property_change (), Fprevious_property_change ();
extern Lisp_Object Fadd_text_properties (), Fset_text_properties ();
diff --git a/src/lisp.h b/src/lisp.h
index bce12d63e6..363a45f4ea 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -1249,6 +1249,9 @@ extern Lisp_Object Ffunction_type (), Fautoload (), Fcommandp ();
extern Lisp_Object Feval (), Fapply (), Ffuncall ();
extern Lisp_Object Fglobal_set (), Fglobal_value (), Fbacktrace ();
extern Lisp_Object apply1 (), call0 (), call1 (), call2 (), call3 ();
+extern Lisp_Object call4 (), call5 (), call6 ();
+extern Lisp_Object Fkill_emacs (), Fkey_binding (), Fsit_for ();
+extern Lisp_Object Fdo_auto_save (), Fset_marker ();
extern Lisp_Object apply_lambda ();
extern Lisp_Object internal_catch ();
extern Lisp_Object internal_condition_case ();