Commit d6924eff by Richard Kenner

(get_token): Remove decl of unused variable QUOTE.

(get_token): Remove unused label AGAIN.

From-SVN: r6892
parent 0df564e5
/* scan.c - Utility functions for scan-decls and fix-header programs. /* Utility functions for scan-decls and fix-header programs.
Copyright (C) 1993 Free Software Foundation, Inc. Copyright (C) 1993, 1994 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify it 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 under the terms of the GNU General Public License as published by the
...@@ -208,7 +208,6 @@ get_token (fp, s) ...@@ -208,7 +208,6 @@ get_token (fp, s)
s->ptr = s->base; s->ptr = s->base;
retry: retry:
c = ' '; c = ' ';
again:
c = skip_spaces (fp, c); c = skip_spaces (fp, c);
if (c == '\n') if (c == '\n')
{ {
...@@ -254,7 +253,6 @@ get_token (fp, s) ...@@ -254,7 +253,6 @@ get_token (fp, s)
} }
if (c == '\'' || c == '"') if (c == '\'' || c == '"')
{ {
int quote = c;
c = scan_string (fp, s, c); c = scan_string (fp, s, c);
ungetc (c, fp); ungetc (c, fp);
return c == '\'' ? CHAR_TOKEN : STRING_TOKEN; return c == '\'' ? CHAR_TOKEN : STRING_TOKEN;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment