aboutsummaryrefslogtreecommitdiff
path: root/ugly.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-11-13 12:39:04 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-11-13 12:39:04 -0200
commite4645c835d2b2e49f0d39eb3069638f60da388cd (patch)
tree6e87114792a20333667fa2bebf37b2ed812890dd /ugly.h
parent0c5ac77c9949ecfe83537ebe2de355a5286ce6ae (diff)
downloadlua-e4645c835d2b2e49f0d39eb3069638f60da388cd.tar.gz
lua-e4645c835d2b2e49f0d39eb3069638f60da388cd.tar.bz2
lua-e4645c835d2b2e49f0d39eb3069638f60da388cd.zip
small changes in 'ugly' part.
Diffstat (limited to 'ugly.h')
-rw-r--r--ugly.h16
1 files changed, 14 insertions, 2 deletions
diff --git a/ugly.h b/ugly.h
index 6c4b873c..3938f639 100644
--- a/ugly.h
+++ b/ugly.h
@@ -1,5 +1,15 @@
1enum 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
12enum {
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