Mercurial > emacs
comparison src/xdisp.c @ 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 | c51e1ff87656 |
children | 4ff0c5c05867 |
comparison
equal
deleted
inserted
replaced
6064:bdfff039f6e3 | 6065:ab1aef4b0e07 |
---|---|
1366 vpos++; | 1366 vpos++; |
1367 if (pos != val.bufpos) | 1367 if (pos != val.bufpos) |
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 |
1377 /* If last line is continued in middle of character, | 1380 /* If last line is continued in middle of character, |
1378 include the split character in the text considered on the frame */ | 1381 include the split character in the text considered on the frame */ |