aboutsummaryrefslogtreecommitdiff
path: root/src/hyper/parse-aux.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/hyper/parse-aux.c')
-rw-r--r--src/hyper/parse-aux.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/hyper/parse-aux.c b/src/hyper/parse-aux.c
index 4c7600b9..24efcf89 100644
--- a/src/hyper/parse-aux.c
+++ b/src/hyper/parse-aux.c
@@ -512,7 +512,6 @@ int
get_filename()
{
int c, ws;
- static int seen_white = 0; /*UNUSED */
static char buffer[256];
char *buf = buffer;
@@ -524,8 +523,6 @@ get_filename()
keyword_fpos = fpos;
c = get_char();
ws = whitespace(c);
- if (ws)
- seen_white = 1;
} while (ws);
switch (c) {
case EOF:
@@ -545,7 +542,6 @@ get_filename()
*buf = '\0';
token.type = openaxiom_Word_token;
token.id = buffer;
- seen_white = 0;
break;
}
return 1;