aboutsummaryrefslogtreecommitdiff
path: root/src/grecs-lex.l
diff options
context:
space:
mode:
Diffstat (limited to 'src/grecs-lex.l')
-rw-r--r--src/grecs-lex.l7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/grecs-lex.l b/src/grecs-lex.l
index faf6c4c..a3cc7d8 100644
--- a/src/grecs-lex.l
+++ b/src/grecs-lex.l
@@ -49,7 +49,6 @@ grecs_locus_t grecs_current_locus; /* Input file location */
static size_t xlines;
static struct grecs_list *line_acc;
-static struct grecs_list *string_list;
static void multiline_begin(char *);
static void multiline_add(char *);
@@ -185,7 +184,6 @@ grecs_lex_begin(const char *name)
line_acc = grecs_list_create();
line_acc->free_entry = line_acc_free_entry;
- string_list = grecs_list_create();
if (grecs_preprocessor) {
int fd;
@@ -213,9 +211,6 @@ grecs_lex_begin(const char *name)
void
grecs_lex_end(int err)
{
- if (!err)
- string_list->free_entry = NULL;
- grecs_list_free(string_list);
grecs_list_clear(line_acc);
}
@@ -392,7 +387,6 @@ grecs_line_finish()
}
str = grecs_malloc(size + 1);
- grecs_list_append(string_list, str);
for (ep = line_acc->head, p = str; ep; ep = ep->next) {
struct line_acc_entry *ent = ep->data;
char *str = line_acc_ptr(ent);
@@ -417,7 +411,6 @@ ident()
len = strlen(p);
str = grecs_malloc(len + 1);
strcpy(str, p);
- grecs_list_append(string_list, str);
yylval.string = str;
return IDENT;
}

Return to:

Send suggestions and report system problems to the System administrator.