comparison src/xterm.c @ 15928:2882af484d9c

(fast_find_position): Fix previous change.
author Richard M. Stallman <rms@gnu.org>
date Sun, 25 Aug 1996 23:31:20 +0000
parents 1f39e8812915
children 6ad9e8fee494
comparison
equal deleted inserted replaced
15927:9b6ae5c1a0bf 15928:2882af484d9c
2121 and we didn't find it in the line we scanned, 2121 and we didn't find it in the line we scanned,
2122 use the start of the following line. */ 2122 use the start of the following line. */
2123 if (maybe_next_line) 2123 if (maybe_next_line)
2124 { 2124 {
2125 row++; 2125 row++;
2126 lastcol = 0; 2126 lastcol = left;
2127 } 2127 }
2128 2128
2129 *rowp = row + top; 2129 *rowp = row + top;
2130 *columnp = lastcol; 2130 *columnp = lastcol;
2131 return 0; 2131 return 0;