(get_token): Remove decl of unused variable QUOTE.

(get_token): Remove unused label AGAIN.

From-SVN: r6892
This commit is contained in:
Richard Kenner 1994-03-25 14:17:54 -05:00
parent 0df564e54c
commit d6924effb5
1 changed files with 2 additions and 4 deletions

View File

@ -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;