# HG changeset patch # User Karl Heuer # Date 762118955 0 # Node ID ab1aef4b0e075853952ae140f3bd914fe1b0a76a # Parent bdfff039f6e3491dd48ebbbe88fbdf6b40ab9f26 (try_window): Add #ifdef USE_TEXT_PROPERTIES around call to Fget_text_property. diff -r bdfff039f6e3 -r ab1aef4b0e07 src/xdisp.c --- 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; }