summaryrefslogtreecommitdiff
path: root/giscanner/scannerlexer.l
diff options
context:
space:
mode:
authorJohan Dahlin <jdahlin@async.com.br>2009-01-20 23:59:44 +0000
committerJohan Dahlin <johan@src.gnome.org>2009-01-20 23:59:44 +0000
commit4aa4dacaffe4ea0fe78ac97d0437d0563e12aacd (patch)
treeea554d08a6cd925680d7a56fd6d350c6d4e1c964 /giscanner/scannerlexer.l
parent35a4c734b0f350135a39643a5461b29d72547083 (diff)
downloadgobject-introspection-4aa4dacaffe4ea0fe78ac97d0437d0563e12aacd.tar.gz
Increase the buffer size to 1M, so gtkalias.h can be parsed.
2009-01-20 Johan Dahlin <jdahlin@async.com.br> * giscanner/scannerlexer.l: Increase the buffer size to 1M, so gtkalias.h can be parsed. svn path=/trunk/; revision=1056
Diffstat (limited to 'giscanner/scannerlexer.l')
-rw-r--r--giscanner/scannerlexer.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/giscanner/scannerlexer.l b/giscanner/scannerlexer.l
index 53603e25..add6e35c 100644
--- a/giscanner/scannerlexer.l
+++ b/giscanner/scannerlexer.l
@@ -39,7 +39,7 @@
int lineno;
#undef YY_BUF_SIZE
-#define YY_BUF_SIZE 65536
+#define YY_BUF_SIZE 1048576
extern int yylex (GISourceScanner *scanner);
#define YY_DECL int yylex (GISourceScanner *scanner)