From 94de2220fa2c449bd99571639b8cabbe28824698 Mon Sep 17 00:00:00 2001 From: John Darrington Date: Thu, 30 Nov 2006 10:39:00 +0000 Subject: [PATCH] deleted some commented out code. --- src/language/control/repeat.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/language/control/repeat.c b/src/language/control/repeat.c index 45e95829b5..796c6e9354 100644 --- a/src/language/control/repeat.c +++ b/src/language/control/repeat.c @@ -537,11 +537,6 @@ do_repeat_filter (struct getl_interface *block_, struct string *line) Puts the line in OUTPUT, sets the file name in *FILE_NAME and line number in *LINE_NUMBER. Returns true if a line was obtained, false if the source is exhausted. */ -#if 0 -static bool -do_repeat_read (struct string *output, char **file_name, int *line_number, - void *block_) -#endif static bool do_repeat_read (struct getl_interface *b, struct string *output) { @@ -558,10 +553,6 @@ do_repeat_read (struct getl_interface *b, struct string *output) line = block->cur_line; ds_assign_cstr (output, line->line); -#if 0 - *file_name = line->file_name; - *line_number = -line->line_number; -#endif block->cur_line = line->next; return true; } -- 2.30.2