From d6924effb5224d4edb9bebc9f26453480b2d32c7 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Fri, 25 Mar 1994 14:17:54 -0500 Subject: [PATCH] (get_token): Remove decl of unused variable QUOTE. (get_token): Remove unused label AGAIN. From-SVN: r6892 --- gcc/scan.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/gcc/scan.c b/gcc/scan.c index 03b7c35cfd4b..17e9898497f1 100644 --- a/gcc/scan.c +++ b/gcc/scan.c @@ -1,5 +1,5 @@ -/* scan.c - Utility functions for scan-decls and fix-header programs. - Copyright (C) 1993 Free Software Foundation, Inc. +/* Utility functions for scan-decls and fix-header programs. + Copyright (C) 1993, 1994 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the @@ -208,7 +208,6 @@ get_token (fp, s) s->ptr = s->base; retry: c = ' '; - again: c = skip_spaces (fp, c); if (c == '\n') { @@ -254,7 +253,6 @@ get_token (fp, s) } if (c == '\'' || c == '"') { - int quote = c; c = scan_string (fp, s, c); ungetc (c, fp); return c == '\'' ? CHAR_TOKEN : STRING_TOKEN; -- 2.47.2