# HG changeset patch # User Jim Blandy # Date 781654395 0 # Node ID b7f3059c308a4113f8ea9c028766f0c4192300a8 # Parent 698990d4feca3589df7c9147018b83b52799927f * cmds.c (Fforward_line): Call scan_buffer with new args. (Fend_of_line): Replace call to Fforward_line and search loop with call to find_before_next_newline. diff -r 698990d4feca -r b7f3059c308a src/cmds.c --- a/src/cmds.c Sat Oct 08 22:12:45 1994 +0000 +++ b/src/cmds.c Sat Oct 08 22:13:15 1994 +0000 @@ -106,7 +106,7 @@ } negp = count <= 0; - pos = scan_buffer ('\n', pos2, count - negp, &shortage, 1); + pos = scan_buffer ('\n', pos2, 0, count - negp, &shortage, 1); if (shortage > 0 && (negp || (ZV > BEGV @@ -150,13 +150,7 @@ else CHECK_NUMBER (n, 0); - if (XINT (n) != 1) - Fforward_line (make_number (XINT (n) - 1)); - - pos = point; - stop = ZV; - while (pos < stop && FETCH_CHAR (pos) != '\n') pos++; - SET_PT (pos); + SET_PT (find_before_next_newline (PT, 0, XINT (n) - (XINT (n) <= 0))); return Qnil; }