changeset 6065:ab1aef4b0e07

(try_window): Add #ifdef USE_TEXT_PROPERTIES around call to Fget_text_property.
author Karl Heuer <kwzh@gnu.org>
date Thu, 24 Feb 1994 19:42:35 +0000
parents bdfff039f6e3
children 4ff0c5c05867
files src/xdisp.c
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/xdisp.c	Thu Feb 24 19:24:37 1994 +0000
+++ b/src/xdisp.c	Thu Feb 24 19:42:35 1994 +0000
@@ -1368,9 +1368,12 @@
 	last_text_vpos
 	  /* Next line, unless prev line ended in end of buffer with no cr */
 	  = vpos - (val.vpos && (FETCH_CHAR (val.bufpos - 1) != '\n'
+#ifdef USE_TEXT_PROPERTIES
 				 || ! NILP (Fget_text_property (val.bufpos-1,
 								Qinvisible,
-								Fcurrent_buffer ()))));
+								Fcurrent_buffer ()))
+#endif
+				 ));
       pos = val.bufpos;
     }