summaryrefslogtreecommitdiff
path: root/gobject-introspection
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2014-12-01 18:22:58 +0100
committerRico Tzschichholz <ricotz@ubuntu.com>2014-12-01 18:22:58 +0100
commit10c7e166d00666526cc62291048d3dccdf3b815b (patch)
tree61f637b32ddcb603c8cf8a1f9946dbde8918d5ed /gobject-introspection
parent9f86edc7be0f28f875b1c42637cd214232926eeb (diff)
downloadvala-10c7e166d00666526cc62291048d3dccdf3b815b.tar.gz
gen-introspect: Increase lexer buffer size to 1048576, taken from g-i
Diffstat (limited to 'gobject-introspection')
-rw-r--r--gobject-introspection/scannerlexer.l3
1 files changed, 3 insertions, 0 deletions
diff --git a/gobject-introspection/scannerlexer.l b/gobject-introspection/scannerlexer.l
index 093b44fba..d3d24a1a8 100644
--- a/gobject-introspection/scannerlexer.l
+++ b/gobject-introspection/scannerlexer.l
@@ -38,6 +38,9 @@
int lineno;
+#undef YY_BUF_SIZE
+#define YY_BUF_SIZE 1048576
+
extern int yylex (GIGenerator *igenerator);
#define YY_DECL int yylex (GIGenerator *igenerator)
static int yywrap (void);