X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/88bc8332eb14bcc4780fd3fe3dd4de2205c31dbf..0e963201d03d9229bb8ac4323291d2b0119526ed:/src/intervals.h diff --git a/src/intervals.h b/src/intervals.h index b2260d002e..2b68d4ef9d 100644 --- a/src/intervals.h +++ b/src/intervals.h @@ -1,5 +1,5 @@ /* Definitions and global variables for intervals. - Copyright (C) 1993-1994, 2000-2015 Free Software Foundation, Inc. + Copyright (C) 1993-1994, 2000-2016 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -16,7 +16,8 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Emacs. If not, see . */ -#include "dispextern.h" +#ifndef EMACS_INTERVALS_H +#define EMACS_INTERVALS_H INLINE_HEADER_BEGIN @@ -223,7 +224,7 @@ set_interval_plist (INTERVAL i, Lisp_Object plist) #define TEXT_PROP_MEANS_INVISIBLE(prop) \ (EQ (BVAR (current_buffer, invisibility_spec), Qt) \ ? !NILP (prop) \ - : invisible_p (prop, BVAR (current_buffer, invisibility_spec))) + : invisible_prop (prop, BVAR (current_buffer, invisibility_spec))) /* Declared in alloc.c. */ @@ -269,7 +270,7 @@ extern INTERVAL validate_interval_range (Lisp_Object, Lisp_Object *, extern INTERVAL interval_of (ptrdiff_t, Lisp_Object); /* Defined in xdisp.c. */ -extern int invisible_p (Lisp_Object, Lisp_Object); +extern int invisible_prop (Lisp_Object, Lisp_Object); /* Defined in textprop.c. */ extern Lisp_Object copy_text_properties (Lisp_Object, Lisp_Object, @@ -292,6 +293,6 @@ extern int text_property_stickiness (Lisp_Object prop, Lisp_Object pos, extern void syms_of_textprop (void); -#include "composite.h" - INLINE_HEADER_END + +#endif /* EMACS_INTERVALS_H */