aboutsummaryrefslogtreecommitdiff
path: root/src/lua/math/luaopen_math.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lua/math/luaopen_math.cpp')
-rw-r--r--src/lua/math/luaopen_math.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lua/math/luaopen_math.cpp b/src/lua/math/luaopen_math.cpp
index ea169e3..98abeab 100644
--- a/src/lua/math/luaopen_math.cpp
+++ b/src/lua/math/luaopen_math.cpp
@@ -61,13 +61,13 @@ namespace jin
}
static const luaL_Reg f[] = {
- { "and", l_and },
- { "or" , l_or },
- { "xor", l_xor },
- { "not", l_not },
- { "lshift", l_lshift },
- { "rshift", l_rshift },
- { "inc", l_include},
+ { "AND", l_and },
+ { "OR" , l_or },
+ { "XOR", l_xor },
+ { "NOT", l_not },
+ { "LSHIFT", l_lshift },
+ { "RSHIFT", l_rshift },
+ { "INC", l_include},
{ 0, 0 }
};