diff options
author | Gerd Moellmann <gerd@gnu.org> | 1999-07-21 21:43:52 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 1999-07-21 21:43:52 +0000 |
commit | ecfd95532daefab697b130da736ecdc7cb292169 (patch) | |
tree | cc2ca36e415bacf041c37e319af658ae03fb9e7b /src/intervals.h | |
parent | 7ee32cda427368906e23a0209aa4136cf2974781 (diff) | |
download | emacs-ecfd95532daefab697b130da736ecdc7cb292169.tar.gz |
Add function prototypes.
Diffstat (limited to 'src/intervals.h')
-rw-r--r-- | src/intervals.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/intervals.h b/src/intervals.h index b0b9b0b9b9f..f1f65f2765b 100644 --- a/src/intervals.h +++ b/src/intervals.h @@ -223,6 +223,8 @@ extern void move_if_not_intangible P_ ((int)); extern Lisp_Object get_local_map P_ ((int, struct buffer *)); extern INTERVAL update_interval P_ ((INTERVAL, int)); extern void set_intervals_multibyte P_ ((int)); +extern INTERVAL validate_interval_range P_ ((Lisp_Object, Lisp_Object *, + Lisp_Object *, int)); /* Defined in xdisp.c */ extern int invisible_ellipsis_p P_ ((Lisp_Object, Lisp_Object)); @@ -261,6 +263,10 @@ EXFUN (Ftext_property_not_all, 5); extern Lisp_Object copy_text_properties P_ ((Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object)); +Lisp_Object text_property_list P_ ((Lisp_Object, Lisp_Object, Lisp_Object, + Lisp_Object)); +int add_text_properties_from_list P_ ((Lisp_Object, Lisp_Object, Lisp_Object)); +void extend_property_ranges P_ ((Lisp_Object, Lisp_Object, Lisp_Object)); extern void syms_of_textprop (); |