lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 3386e3c1fba2a829fdf5987edce2a501d6379a5a
parent 25010f8e0908c74475333396730c7d0653e3dcb8
Author: Waldemar Celes <celes@tecgraf.puc-rio.br>
Date:   Tue, 18 Oct 1994 12:30:10 -0200

definition of ugly tokens

Diffstat:
Augly.h | 24++++++++++++++++++++++++
1 file changed, 24 insertions(+), 0 deletions(-)

diff --git a/ugly.h b/ugly.h @@ -0,0 +1,24 @@ +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 +};