Mercurial > emacs
changeset 25023:6e3de2f65704
Add function prototypes.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Wed, 21 Jul 1999 21:43:52 +0000 |
parents | 3ea84b15b5e6 |
children | 3bb745067f0e |
files | src/intervals.h |
diffstat | 1 files changed, 6 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/intervals.h Wed Jul 21 21:43:52 1999 +0000 +++ b/src/intervals.h Wed Jul 21 21:43:52 1999 +0000 @@ -223,6 +223,8 @@ 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 @@ 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 ();