diff options
Diffstat (limited to 'src/intervals.h')
| -rw-r--r-- | src/intervals.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/intervals.h b/src/intervals.h index b2260d002e6..30fb4b10b02 100644 --- a/src/intervals.h +++ b/src/intervals.h | |||
| @@ -223,7 +223,7 @@ set_interval_plist (INTERVAL i, Lisp_Object plist) | |||
| 223 | #define TEXT_PROP_MEANS_INVISIBLE(prop) \ | 223 | #define TEXT_PROP_MEANS_INVISIBLE(prop) \ |
| 224 | (EQ (BVAR (current_buffer, invisibility_spec), Qt) \ | 224 | (EQ (BVAR (current_buffer, invisibility_spec), Qt) \ |
| 225 | ? !NILP (prop) \ | 225 | ? !NILP (prop) \ |
| 226 | : invisible_p (prop, BVAR (current_buffer, invisibility_spec))) | 226 | : invisible_prop (prop, BVAR (current_buffer, invisibility_spec))) |
| 227 | 227 | ||
| 228 | /* Declared in alloc.c. */ | 228 | /* Declared in alloc.c. */ |
| 229 | 229 | ||
| @@ -269,7 +269,7 @@ extern INTERVAL validate_interval_range (Lisp_Object, Lisp_Object *, | |||
| 269 | extern INTERVAL interval_of (ptrdiff_t, Lisp_Object); | 269 | extern INTERVAL interval_of (ptrdiff_t, Lisp_Object); |
| 270 | 270 | ||
| 271 | /* Defined in xdisp.c. */ | 271 | /* Defined in xdisp.c. */ |
| 272 | extern int invisible_p (Lisp_Object, Lisp_Object); | 272 | extern int invisible_prop (Lisp_Object, Lisp_Object); |
| 273 | 273 | ||
| 274 | /* Defined in textprop.c. */ | 274 | /* Defined in textprop.c. */ |
| 275 | extern Lisp_Object copy_text_properties (Lisp_Object, Lisp_Object, | 275 | extern Lisp_Object copy_text_properties (Lisp_Object, Lisp_Object, |