diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1994-11-13 12:39:04 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1994-11-13 12:39:04 -0200 |
commit | e4645c835d2b2e49f0d39eb3069638f60da388cd (patch) | |
tree | 6e87114792a20333667fa2bebf37b2ed812890dd /ugly.h | |
parent | 0c5ac77c9949ecfe83537ebe2de355a5286ce6ae (diff) | |
download | lua-e4645c835d2b2e49f0d39eb3069638f60da388cd.tar.gz lua-e4645c835d2b2e49f0d39eb3069638f60da388cd.tar.bz2 lua-e4645c835d2b2e49f0d39eb3069638f60da388cd.zip |
small changes in 'ugly' part.
Diffstat (limited to 'ugly.h')
-rw-r--r-- | ugly.h | 16 |
1 files changed, 14 insertions, 2 deletions
@@ -1,5 +1,15 @@ | |||
1 | enum | 1 | /* |
2 | { | 2 | ** ugly.h |
3 | ** TecCGraf - PUC-Rio | ||
4 | ** $Id: $ | ||
5 | */ | ||
6 | |||
7 | #ifndef ugly_h | ||
8 | #define ugly_h | ||
9 | |||
10 | /* This enum must have the same order of the array 'reserved' in lex.c */ | ||
11 | |||
12 | enum { | ||
3 | U_and=128, | 13 | U_and=128, |
4 | U_do, | 14 | U_do, |
5 | U_else, | 15 | U_else, |
@@ -22,3 +32,5 @@ enum | |||
22 | U_ne = '~'+128, | 32 | U_ne = '~'+128, |
23 | U_sc = '.'+128 | 33 | U_sc = '.'+128 |
24 | }; | 34 | }; |
35 | |||
36 | #endif | ||