aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-11-22 16:06:33 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-11-22 16:06:33 -0200
commita64cf8fac97d59ae782625fa1aedae3b5f3331d4 (patch)
tree79db5c712b5ff61a8b58bb15b77f085895ad35e1
parent092fa71dddb6615e7627602f3675c70fd0e9e06f (diff)
downloadlua-a64cf8fac97d59ae782625fa1aedae3b5f3331d4.tar.gz
lua-a64cf8fac97d59ae782625fa1aedae3b5f3331d4.tar.bz2
lua-a64cf8fac97d59ae782625fa1aedae3b5f3331d4.zip
'test' -> 'btest'
-rw-r--r--lbitlib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lbitlib.c b/lbitlib.c
index f0dce9a6..e3ce2f3c 100644
--- a/lbitlib.c
+++ b/lbitlib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lbitlib.c,v 1.11 2010/11/08 16:31:22 roberto Exp roberto $ 2** $Id: lbitlib.c,v 1.12 2010/11/22 16:39:20 roberto Exp roberto $
3** Standard library for bitwise operations 3** Standard library for bitwise operations
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -150,7 +150,7 @@ static const luaL_Reg bitlib[] = {
150 {"lshift", b_lshift}, 150 {"lshift", b_lshift},
151 {"rrotate", b_rrot}, 151 {"rrotate", b_rrot},
152 {"rshift", b_rshift}, 152 {"rshift", b_rshift},
153 {"test", b_test}, 153 {"btest", b_test},
154 {NULL, NULL} 154 {NULL, NULL}
155}; 155};
156 156