summaryrefslogtreecommitdiffstats
path: root/parser.y
diff options
context:
space:
mode:
Diffstat (limited to 'parser.y')
-rw-r--r--parser.y5
1 files changed, 3 insertions, 2 deletions
diff --git a/parser.y b/parser.y
index 7a9b11b0..1a3a020b 100644
--- a/parser.y
+++ b/parser.y
@@ -32,6 +32,7 @@
#include <dirent.h>
#include "lib.h"
#include "regex.h"
+#include "utf8.h"
#include "parser.h"
int yylex(void);
@@ -46,9 +47,9 @@ static obj_t *parsed_spec;
%}
%union {
- char *lexeme;
+ wchar_t *lexeme;
union obj *obj;
- char chr;
+ wchar_t chr;
long num;
}