summaryrefslogtreecommitdiff
path: root/src/intervals.h
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2003-05-17 18:46:36 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2003-05-17 18:46:36 +0000
commitacf4725f3b42e2a57289a7b51c4395cead02dc3e (patch)
tree8f0d47309bce7276812f748faf6ce631f803a3ba /src/intervals.h
parent3513a5980c725296df90364932f4ce6335adb34c (diff)
downloademacs-acf4725f3b42e2a57289a7b51c4395cead02dc3e.tar.gz
(text_property_stickiness): New arg `buffer'.
Diffstat (limited to 'src/intervals.h')
-rw-r--r--src/intervals.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/intervals.h b/src/intervals.h
index e29e7d3aa01..8ecc36a9c9f 100644
--- a/src/intervals.h
+++ b/src/intervals.h
@@ -1,5 +1,5 @@
/* Definitions and global variables for intervals.
- Copyright (C) 1993, 1994, 2000, 2002 Free Software Foundation, Inc.
+ Copyright (C) 1993, 1994, 2000, 2002, 2003 Free Software Foundation, Inc.
This file is part of GNU Emacs.
@@ -134,7 +134,7 @@ Boston, MA 02111-1307, USA. */
{ \
(i)->total_length = (i)->position = 0; \
(i)->left = (i)->right = NULL_INTERVAL; \
- SET_INTERVAL_PARENT (i, NULL_INTERVAL); \
+ SET_INTERVAL_PARENT (i, NULL_INTERVAL); \
(i)->write_protect = 0; \
(i)->visible = 0; \
(i)->front_sticky = (i)->rear_sticky = 0; \
@@ -304,7 +304,7 @@ int add_text_properties_from_list P_ ((Lisp_Object, Lisp_Object, Lisp_Object));
void extend_property_ranges P_ ((Lisp_Object, Lisp_Object, Lisp_Object));
Lisp_Object get_char_property_and_overlay P_ ((Lisp_Object, Lisp_Object,
Lisp_Object, Lisp_Object*));
-extern int text_property_stickiness P_ ((Lisp_Object prop, Lisp_Object pos));
+extern int text_property_stickiness P_ ((Lisp_Object prop, Lisp_Object pos, Lisp_Object buffer));
extern void syms_of_textprop ();