# HG changeset patch # User Richard M. Stallman # Date 760251942 0 # Node ID 5b77773166f714e272921fb0a6b61e1899acd0b2 # Parent 1864e9a12261385ad55a42c1c36c42183fedafe3 (find_defun_start): Pass new arg to scan_buffer. diff -r 1864e9a12261 -r 5b77773166f7 src/syntax.c --- a/src/syntax.c Thu Feb 03 05:05:12 1994 +0000 +++ b/src/syntax.c Thu Feb 03 05:05:42 1994 +0000 @@ -84,7 +84,7 @@ return find_start_value; /* Back up to start of line. */ - tem = scan_buffer ('\n', pos, -1, &shortage); + tem = scan_buffer ('\n', pos, -1, &shortage, 1); while (tem > BEGV) { @@ -92,7 +92,7 @@ if (SYNTAX (FETCH_CHAR (tem)) == Sopen) break; /* Move to beg of previous line. */ - tem = scan_buffer ('\n', tem, -2, &shortage); + tem = scan_buffer ('\n', tem, -2, &shortage, 1); } /* Record what we found, for the next try. */