detail (identation of switch)
This commit is contained in:
5
ldump.c
5
ldump.c
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
** $Id: ldump.c,v 2.38 2017/06/27 11:35:31 roberto Exp roberto $
|
||||
** $Id: ldump.c,v 2.39 2017/06/27 14:21:12 roberto Exp roberto $
|
||||
** save precompiled Lua chunks
|
||||
** See Copyright Notice in lua.h
|
||||
*/
|
||||
@@ -128,8 +128,7 @@ static void DumpConstants (const Proto *f, DumpState *D) {
|
||||
case LUA_TLNGSTR:
|
||||
DumpString(tsvalue(o), D);
|
||||
break;
|
||||
default:
|
||||
lua_assert(0);
|
||||
default: lua_assert(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
** $Id: lundump.c,v 2.46 2017/06/27 14:21:12 roberto Exp roberto $
|
||||
** $Id: lundump.c,v 2.47 2017/06/29 15:06:44 roberto Exp roberto $
|
||||
** load precompiled Lua chunks
|
||||
** See Copyright Notice in lua.h
|
||||
*/
|
||||
@@ -150,8 +150,7 @@ static void LoadConstants (LoadState *S, Proto *f) {
|
||||
case LUA_TLNGSTR:
|
||||
setsvalue2n(S->L, o, LoadString(S));
|
||||
break;
|
||||
default:
|
||||
lua_assert(0);
|
||||
default: lua_assert(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user