linuxdcpp-team team mailing list archive
-
linuxdcpp-team team
-
Mailing list archive
-
Message #05870
[Branch ~dcplusplus-team/dcplusplus/trunk] Rev 3005: LUA -> Lua; see 'What's in a name?' of http://www.lua.org/about.html
------------------------------------------------------------
revno: 3005
committer: cologic <ne5@xxxxxxxxxxx>
branch nick: dcplusplus
timestamp: Thu 2012-07-19 19:07:17 -0400
message:
LUA -> Lua; see 'What's in a name?' of http://www.lua.org/about.html
modified:
plugins/Script/LuaExec.h
plugins/Script/ScriptInstance.cpp
--
lp:dcplusplus
https://code.launchpad.net/~dcplusplus-team/dcplusplus/trunk
Your team Dcplusplus-team is subscribed to branch lp:dcplusplus.
To unsubscribe from this branch go to https://code.launchpad.net/~dcplusplus-team/dcplusplus/trunk/+edit-subscription
=== modified file 'plugins/Script/LuaExec.h'
--- plugins/Script/LuaExec.h 2012-07-19 22:01:31 +0000
+++ plugins/Script/LuaExec.h 2012-07-19 23:07:17 +0000
@@ -27,7 +27,7 @@
lua_call(L, 1, 0);
}
else { /* no _ALERT function; print it on stderr */
- Util::logMessage(Util::toUtf8(string("LUA ERROR: ") + lua_tostring(L, -2)));
+ Util::logMessage(Util::toUtf8(string("Lua ERROR: ") + lua_tostring(L, -2)));
lua_pop(L, 2); /* remove error message and _ALERT */
}
}
=== modified file 'plugins/Script/ScriptInstance.cpp'
--- plugins/Script/ScriptInstance.cpp 2012-07-19 22:01:31 +0000
+++ plugins/Script/ScriptInstance.cpp 2012-07-19 23:07:17 +0000
@@ -37,7 +37,7 @@
return true;
}
const char *msg = lua_tostring(L, -1);
- Util::logMessage((msg != NULL) ? string("LUA Error: ") + msg : string("LUA Error: (unknown)"));
+ Util::logMessage((msg != NULL) ? string("Lua Error: ") + msg : string("Lua Error: (unknown)"));
lua_pop(L, 1);
} else {
lua_settop(L, 0);