aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/search.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/search.c b/src/search.c
index b4ef3229ac2..e894e22dd6d 100644
--- a/src/search.c
+++ b/src/search.c
@@ -349,6 +349,13 @@ scan_buffer (target, start, count, shortage, allow_quit)
349} 349}
350 350
351int 351int
352find_next_newline_no_quit (from, cnt)
353 register int from, cnt;
354{
355 return scan_buffer ('\n', from, cnt, (int *) 0, 0);
356}
357
358int
352find_next_newline (from, cnt) 359find_next_newline (from, cnt)
353 register int from, cnt; 360 register int from, cnt;
354{ 361{