diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/search.c | 7 |
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 | ||
| 351 | int | 351 | int |
| 352 | find_next_newline_no_quit (from, cnt) | ||
| 353 | register int from, cnt; | ||
| 354 | { | ||
| 355 | return scan_buffer ('\n', from, cnt, (int *) 0, 0); | ||
| 356 | } | ||
| 357 | |||
| 358 | int | ||
| 352 | find_next_newline (from, cnt) | 359 | find_next_newline (from, cnt) |
| 353 | register int from, cnt; | 360 | register int from, cnt; |
| 354 | { | 361 | { |