# HG changeset patch # User Kim F. Storm # Date 1100006622 0 # Node ID 6f9ee118f2bb751bcbdb09c8c2f8d84b988f57bc # Parent fb4cd138f0b8d738a95201baace64ec73dac0ba1 (NULL_INTERVAL_P): Add separate version when ENABLE_CHECKING is not defined to silence compiler. (compare_string_intervals): Add prototype. diff -r fb4cd138f0b8 -r 6f9ee118f2bb src/intervals.h --- a/src/intervals.h Tue Nov 09 13:23:32 2004 +0000 +++ b/src/intervals.h Tue Nov 09 13:23:42 2004 +0000 @@ -84,9 +84,14 @@ #define INT_LISPLIKE(i) (BUFFERP ((Lisp_Object){(EMACS_INT)(i)}) \ || STRINGP ((Lisp_Object){(EMACS_INT)(i)})) #endif + +#ifdef ENABLE_CHECKING #define NULL_INTERVAL_P(i) \ (CHECK (!INT_LISPLIKE (i), "non-interval"), (i) == NULL_INTERVAL) /* old #define NULL_INTERVAL_P(i) ((i) == NULL_INTERVAL || INT_LISPLIKE (i)) */ +#else +#define NULL_INTERVAL_P(i) ((i) == NULL_INTERVAL) +#endif /* True if this interval has no right child. */ #define NULL_RIGHT_CHILD(i) ((i)->right == NULL_INTERVAL) @@ -289,6 +294,7 @@ extern INLINE void copy_intervals_to_string P_ ((Lisp_Object, struct buffer *, int, int)); extern INTERVAL copy_intervals P_ ((INTERVAL, int, int)); +extern int compare_string_intervals P_ ((Lisp_Object, Lisp_Object)); extern Lisp_Object textget P_ ((Lisp_Object, Lisp_Object)); extern Lisp_Object lookup_char_property P_ ((Lisp_Object, Lisp_Object, int)); extern void move_if_not_intangible P_ ((int));