diff options
author | Lua Team <team@lua.org> | 1996-05-14 12:00:00 +0000 |
---|---|---|
committer | repogen <> | 1996-05-14 12:00:00 +0000 |
commit | 721542976ebc89f2f8d17d19be7e4426570b69be (patch) | |
tree | 0c79a45c63aa89d6e4b8ac80931e46d74a72f8cb /src/ugly.h | |
parent | 71754d2f6423fb9b6e87658e58bafc5470d53f65 (diff) | |
download | lua-github-2.4.tar.gz |
Lua 2.42.4
Diffstat (limited to 'src/ugly.h')
-rw-r--r-- | src/ugly.h | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/src/ugly.h b/src/ugly.h deleted file mode 100644 index c7512255..00000000 --- a/src/ugly.h +++ /dev/null @@ -1,36 +0,0 @@ -/* -** ugly.h -** TecCGraf - PUC-Rio -** $Id: ugly.h,v 1.2 1994/11/13 14:39:04 roberto Stab $ -*/ - -#ifndef ugly_h -#define ugly_h - -/* This enum must have the same order of the array 'reserved' in lex.c */ - -enum { - U_and=128, - U_do, - U_else, - U_elseif, - U_end, - U_function, - U_if, - U_local, - U_nil, - U_not, - U_or, - U_repeat, - U_return, - U_then, - U_until, - U_while, - U_eq = '='+128, - U_le = '<'+128, - U_ge = '>'+128, - U_ne = '~'+128, - U_sc = '.'+128 -}; - -#endif |