drop max token len to 32 (#3925)

This commit is contained in:
Ashe Connor
2017-12-01 19:33:50 +11:00
committed by GitHub
parent 9a8ab45b6f
commit 8d27845f8c

View File

@@ -3,7 +3,7 @@
#include "lex.linguist_yy.h" #include "lex.linguist_yy.h"
// Anything longer is unlikely to be useful. // Anything longer is unlikely to be useful.
#define MAX_TOKEN_LEN 64 #define MAX_TOKEN_LEN 32
int linguist_yywrap(yyscan_t yyscanner) { int linguist_yywrap(yyscan_t yyscanner) {
return 1; return 1;