[Scummvm-cvs-logs] scummvm master -> 6286779d0a991d4e3c6d8c47f09a0ff8b8819551

bluegr bluegr at gmail.com
Sun Feb 3 17:19:27 CET 2013


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
6286779d0a SWORD25: Fix some spacing in LUA


Commit: 6286779d0a991d4e3c6d8c47f09a0ff8b8819551
    https://github.com/scummvm/scummvm/commit/6286779d0a991d4e3c6d8c47f09a0ff8b8819551
Author: Filippos Karapetis (bluegr at gmail.com)
Date: 2013-02-03T08:18:43-08:00

Commit Message:
SWORD25: Fix some spacing in LUA

Changed paths:
    engines/sword25/util/lua/ldo.cpp



diff --git a/engines/sword25/util/lua/ldo.cpp b/engines/sword25/util/lua/ldo.cpp
index 33ed325..c162a62 100644
--- a/engines/sword25/util/lua/ldo.cpp
+++ b/engines/sword25/util/lua/ldo.cpp
@@ -101,10 +101,10 @@ static void resetstack (lua_State *L, int status) {
 void luaD_throw (lua_State *L, int errcode) {
   if (L->errorJmp) {
     L->errorJmp->status = errcode;
-	// LUAI_THROW has been replaced with an error message in ScummVM, together
-	// with the LUA error code and description
+    // LUAI_THROW has been replaced with an error message in ScummVM, together
+    // with the LUA error code and description
     //LUAI_THROW(L, L->errorJmp);
-	error("LUA error occured, error code is %d (%s)", errcode, luaErrorDescription[errcode]);
+    error("LUA error occured, error code is %d (%s)", errcode, luaErrorDescription[errcode]);
   }
   else {
     L->status = cast_byte(errcode);






More information about the Scummvm-git-logs mailing list