aboutsummaryrefslogtreecommitdiffstats
path: root/src/intervals.h
diff options
context:
space:
mode:
authorKatsumi Yamaoka2015-02-10 07:55:14 +0000
committerKatsumi Yamaoka2015-02-10 07:55:14 +0000
commit2dacd0a7eee1f8fdff028e15ff40640d005c71d7 (patch)
treebd17dba88215113e7564f7ab044272f0a9be4d81 /src/intervals.h
parentb88908b6f0775e4275fdad2c80ea0199d277a947 (diff)
parentf6d781c29456590dfb10e1710171e8d983eeb9e2 (diff)
downloademacs-2dacd0a7eee1f8fdff028e15ff40640d005c71d7.tar.gz
emacs-2dacd0a7eee1f8fdff028e15ff40640d005c71d7.zip
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
Diffstat (limited to 'src/intervals.h')
-rw-r--r--src/intervals.h4
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 *,
269extern INTERVAL interval_of (ptrdiff_t, Lisp_Object); 269extern INTERVAL interval_of (ptrdiff_t, Lisp_Object);
270 270
271/* Defined in xdisp.c. */ 271/* Defined in xdisp.c. */
272extern int invisible_p (Lisp_Object, Lisp_Object); 272extern int invisible_prop (Lisp_Object, Lisp_Object);
273 273
274/* Defined in textprop.c. */ 274/* Defined in textprop.c. */
275extern Lisp_Object copy_text_properties (Lisp_Object, Lisp_Object, 275extern Lisp_Object copy_text_properties (Lisp_Object, Lisp_Object,