diff options
author | delphij <delphij@FreeBSD.org> | 2007-06-04 01:42:54 +0000 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2007-06-04 01:42:54 +0000 |
commit | 9b5d103b5b51a6fea5caf2c8b1fc678d65a357c9 (patch) | |
tree | f7d1bd15b558b3590d7bb4d4e31ef8833e0a1171 /contrib/less/linenum.c | |
parent | 05dd7cf6267b7b4d66cfc8e51b6d7e47d0eba220 (diff) | |
parent | 7672cb6e48e2ed472cbd72caaa0eb155608a644d (diff) | |
download | FreeBSD-src-9b5d103b5b51a6fea5caf2c8b1fc678d65a357c9.zip FreeBSD-src-9b5d103b5b51a6fea5caf2c8b1fc678d65a357c9.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r170256,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'contrib/less/linenum.c')
-rw-r--r-- | contrib/less/linenum.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/less/linenum.c b/contrib/less/linenum.c index 686bfad..184306b 100644 --- a/contrib/less/linenum.c +++ b/contrib/less/linenum.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1984-2004 Mark Nudelman + * Copyright (C) 1984-2007 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. @@ -314,7 +314,7 @@ find_linenum(pos) /* * Allow a signal to abort this loop. */ - cpos = forw_raw_line(cpos, (char **)NULL); + cpos = forw_raw_line(cpos, (char **)NULL, (int *)NULL); if (ABORT_SIGS() || cpos == NULL_POSITION) return (0); longish(); @@ -343,7 +343,7 @@ find_linenum(pos) /* * Allow a signal to abort this loop. */ - cpos = back_raw_line(cpos, (char **)NULL); + cpos = back_raw_line(cpos, (char **)NULL, (int *)NULL); if (ABORT_SIGS() || cpos == NULL_POSITION) return (0); longish(); @@ -398,7 +398,7 @@ find_pos(linenum) /* * Allow a signal to abort this loop. */ - cpos = forw_raw_line(cpos, (char **)NULL); + cpos = forw_raw_line(cpos, (char **)NULL, (int *)NULL); if (ABORT_SIGS() || cpos == NULL_POSITION) return (NULL_POSITION); } @@ -414,7 +414,7 @@ find_pos(linenum) /* * Allow a signal to abort this loop. */ - cpos = back_raw_line(cpos, (char **)NULL); + cpos = back_raw_line(cpos, (char **)NULL, (int *)NULL); if (ABORT_SIGS() || cpos == NULL_POSITION) return (NULL_POSITION); } |