From 7672cb6e48e2ed472cbd72caaa0eb155608a644d Mon Sep 17 00:00:00 2001 From: delphij Date: Mon, 4 Jun 2007 01:42:54 +0000 Subject: /home/delphij/m --- contrib/less/linenum.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'contrib/less/linenum.c') 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); } -- cgit v1.1