Style patches

This commit is contained in:
Artem Serebriyskiy 2013-11-01 02:09:06 +04:00 committed by William S Fulton
commit b9ba05be81
23 changed files with 90 additions and 90 deletions

View file

@ -7,16 +7,16 @@ local env = _ENV -- Lua 5.2
if not env then env = getfenv () end -- Lua 5.1
setmetatable(env, {__index=function (t,i) error("undefined global variable `"..i.."'",2) end})
assert( oc.foo(1,1,"test",1) == 15 )
assert(oc.foo(1,1,"test",1) == 15)
p1 = oc.Pop(nil)
p1 = oc.Pop(nil,false)
assert( p1:hip(true) == 701 )
assert( p1:hip(nil) == 702 )
assert(p1:hip(true) == 701)
assert(p1:hip(nil) == 702)
assert( p1:hop(true) == 801 )
assert( p1:hop(nil) == 805 )
assert(p1:hop(true) == 801)
assert(p1:hop(nil) == 805)
assert( oc.muzak(true) == 3001 )
assert( oc.muzak(nil) == 3002 )
assert(oc.muzak(true) == 3001)
assert(oc.muzak(nil) == 3002)