Increase the buffer size to 1M, so gtkalias.h can be parsed.
authorJohan Dahlin <jdahlin@async.com.br>
Tue, 20 Jan 2009 23:59:44 +0000 (23:59 +0000)
committerJohan Dahlin <johan@src.gnome.org>
Tue, 20 Jan 2009 23:59:44 +0000 (23:59 +0000)
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

ChangeLog
giscanner/scannerlexer.l

index 1d106c2..46d9a2b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-01-20  Johan Dahlin  <jdahlin@async.com.br>
+
+       * giscanner/scannerlexer.l:
+       Increase the buffer size to 1M, so
+       gtkalias.h can be parsed.
+
 2009-01-20  Johan Dahlin  <jdahlin@async.com.br>
 
        * giscanner/glibtransformer.py:
index 53603e2..add6e35 100644 (file)
@@ -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)