From: John Darrington Date: Thu, 30 Nov 2006 10:39:00 +0000 (+0000) Subject: deleted some commented out code. X-Git-Tag: v0.6.0~679 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=94de2220fa2c449bd99571639b8cabbe28824698;p=pspp-builds.git deleted some commented out code. --- diff --git a/src/language/control/repeat.c b/src/language/control/repeat.c index 45e95829..796c6e93 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; }