diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-11-22 16:06:33 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-11-22 16:06:33 -0200 |
commit | a64cf8fac97d59ae782625fa1aedae3b5f3331d4 (patch) | |
tree | 79db5c712b5ff61a8b58bb15b77f085895ad35e1 | |
parent | 092fa71dddb6615e7627602f3675c70fd0e9e06f (diff) | |
download | lua-a64cf8fac97d59ae782625fa1aedae3b5f3331d4.tar.gz lua-a64cf8fac97d59ae782625fa1aedae3b5f3331d4.tar.bz2 lua-a64cf8fac97d59ae782625fa1aedae3b5f3331d4.zip |
'test' -> 'btest'
-rw-r--r-- | lbitlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 | ||