summaryrefslogtreecommitdiffstats
path: root/source/theme.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/theme.c')
-rw-r--r--source/theme.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/theme.c b/source/theme.c
index f555e0de..868cf769 100644
--- a/source/theme.c
+++ b/source/theme.c
@@ -113,7 +113,8 @@ void rofi_theme_print ( Widget *widget )
rofi_theme_print_index ( 0, widget);
}
-extern int yyparse();
+int yyparse();
+void yylex_destroy( void );
extern FILE* yyin;
extern Widget *rofi_theme;
@@ -155,6 +156,7 @@ void rofi_theme_parse_file ( const char *file )
return;
}
while ( yyparse() );
+ yylex_destroy();
}
static Widget *rofi_theme_find_single ( Widget *widget, const char *name)
{