# HG changeset patch # User Gerd Moellmann # Date 1003914733 0 # Node ID 9175d0c189f4836835da146606e9a9bd595927e7 # Parent 164df80e94ba15f46d12e6c05a75686638b91dd5 (fast_find_position): Call row_containing_pos with additional argument. diff -r 164df80e94ba -r 9175d0c189f4 src/w32term.c --- a/src/w32term.c Wed Oct 24 09:11:54 2001 +0000 +++ b/src/w32term.c Wed Oct 24 09:12:13 2001 +0000 @@ -7092,7 +7092,7 @@ int i, past_end = 0; first = MATRIX_FIRST_TEXT_ROW (w->current_matrix); - row = row_containing_pos (w, charpos, first, NULL); + row = row_containing_pos (w, charpos, first, NULL, 0); if (row == NULL) { if (charpos < MATRIX_ROW_START_CHARPOS (first)) diff -r 164df80e94ba -r 9175d0c189f4 src/xterm.c --- a/src/xterm.c Wed Oct 24 09:11:54 2001 +0000 +++ b/src/xterm.c Wed Oct 24 09:12:13 2001 +0000 @@ -7479,7 +7479,7 @@ int i, past_end = 0; first = MATRIX_FIRST_TEXT_ROW (w->current_matrix); - row = row_containing_pos (w, charpos, first, NULL); + row = row_containing_pos (w, charpos, first, NULL, 0); if (row == NULL) { if (charpos < MATRIX_ROW_START_CHARPOS (first))