comparison src/xdisp.c @ 34252:fb271e34071c

(move_it_by_lines): Fix paren typo.
author Gerd Moellmann <gerd@gnu.org>
date Wed, 06 Dec 2000 11:29:17 +0000
parents b5cdf1bb6bb8
children 28c3e736ae57
comparison
equal deleted inserted replaced
34251:c768443cc8ce 34252:fb271e34071c
5073 DVPOS newlines, then see where we are. */ 5073 DVPOS newlines, then see where we are. */
5074 if (!need_y_p && it->truncate_lines_p && it->selective == 0) 5074 if (!need_y_p && it->truncate_lines_p && it->selective == 0)
5075 { 5075 {
5076 int shortage = 0, charpos; 5076 int shortage = 0, charpos;
5077 5077
5078 if (FETCH_BYTE (IT_BYTEPOS (*it) == '\n')) 5078 if (FETCH_BYTE (IT_BYTEPOS (*it)) == '\n')
5079 charpos = IT_CHARPOS (*it) + 1; 5079 charpos = IT_CHARPOS (*it) + 1;
5080 else 5080 else
5081 charpos = scan_buffer ('\n', IT_CHARPOS (*it), 0, dvpos, 5081 charpos = scan_buffer ('\n', IT_CHARPOS (*it), 0, dvpos,
5082 &shortage, 0); 5082 &shortage, 0);
5083 5083