diff options
author | Sergio Queiroz <sqmedeiros@gmail.com> | 2019-01-10 10:06:33 -0300 |
---|---|---|
committer | Sergio Queiroz <sqmedeiros@gmail.com> | 2019-01-10 10:06:33 -0300 |
commit | 4fb816d55f47c48c34cc4478e584b1567a75863b (patch) | |
tree | 54ec6965c9d3983b193cf000a521a06cb3d73b8a /lptypes.h | |
parent | 9be59fb8f4b176a16643e707c74051b243202296 (diff) | |
download | lpeglabel-lpeg-1.0.0.tar.gz lpeglabel-lpeg-1.0.0.tar.bz2 lpeglabel-lpeg-1.0.0.zip |
Adapting lpeglabel-1.5 to the codebase of lpeg-1.0.0lpeg-1.0.0
Diffstat (limited to 'lptypes.h')
-rw-r--r-- | lptypes.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lptypes.h,v 1.16 2017/01/13 13:33:17 roberto Exp $ | 2 | ** $Id: lptypes.h,v 1.14 2015/09/28 17:17:41 roberto Exp $ |
3 | ** LPeg - PEG pattern matching for Lua | 3 | ** LPeg - PEG pattern matching for Lua |
4 | ** Copyright 2007-2017, Lua.org & PUC-Rio (see 'lpeg.html' for license) | 4 | ** Copyright 2007-2015, Lua.org & PUC-Rio (see 'lpeg.html' for license) |
5 | ** written by Roberto Ierusalimschy | 5 | ** written by Roberto Ierusalimschy |
6 | */ | 6 | */ |
7 | 7 | ||
@@ -19,7 +19,7 @@ | |||
19 | #include "lua.h" | 19 | #include "lua.h" |
20 | 20 | ||
21 | 21 | ||
22 | #define VERSION "1.5.1" | 22 | #define VERSION "1.5.0" |
23 | 23 | ||
24 | 24 | ||
25 | #define PATTERN_T "lpeg-pattern" | 25 | #define PATTERN_T "lpeg-pattern" |
@@ -55,9 +55,9 @@ | |||
55 | #endif | 55 | #endif |
56 | 56 | ||
57 | 57 | ||
58 | /* maximum number of rules in a grammar (limited by 'unsigned char') */ | 58 | /* maximum number of rules in a grammar */ |
59 | #if !defined(MAXRULES) | 59 | #if !defined(MAXRULES) |
60 | #define MAXRULES 250 | 60 | #define MAXRULES 1000 |
61 | #endif | 61 | #endif |
62 | 62 | ||
63 | 63 | ||