aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 7fcb800ec3e..f109060287c 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -1368,9 +1368,12 @@ try_window (window, pos)
1368 last_text_vpos 1368 last_text_vpos
1369 /* Next line, unless prev line ended in end of buffer with no cr */ 1369 /* Next line, unless prev line ended in end of buffer with no cr */
1370 = vpos - (val.vpos && (FETCH_CHAR (val.bufpos - 1) != '\n' 1370 = vpos - (val.vpos && (FETCH_CHAR (val.bufpos - 1) != '\n'
1371#ifdef USE_TEXT_PROPERTIES
1371 || ! NILP (Fget_text_property (val.bufpos-1, 1372 || ! NILP (Fget_text_property (val.bufpos-1,
1372 Qinvisible, 1373 Qinvisible,
1373 Fcurrent_buffer ())))); 1374 Fcurrent_buffer ()))
1375#endif
1376 ));
1374 pos = val.bufpos; 1377 pos = val.bufpos;
1375 } 1378 }
1376 1379