From: Jim Meyering Date: Fri, 19 May 1995 15:59:40 +0000 (+0000) Subject: (record_line_starts): Remove set-but-not-used, file-scope variable. X-Git-Tag: textutils-1_12_1~171 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c253f9ba5159d11aaa8789106bad1911352a6e6a;p=thirdparty%2Fcoreutils.git (record_line_starts): Remove set-but-not-used, file-scope variable. --- diff --git a/src/csplit.c b/src/csplit.c index cf1257d84d..8a6c65d941 100644 --- a/src/csplit.c +++ b/src/csplit.c @@ -160,9 +160,6 @@ static unsigned last_line_number = 0; /* Number of the line currently being examined. */ static unsigned current_line = 0; -/* Number of the last line in the input file. */ -static unsigned last_line_in_file = 0; - /* If TRUE, we have read EOF. */ static boolean have_read_eof = FALSE; @@ -429,7 +426,6 @@ record_line_starts (b) { keep_new_line (b, line_start, bytes_left); lines++; - last_line_in_file = last_line_number + lines; } else save_to_hold_area (line_start, bytes_left);