Skip to content

Commit

Permalink
リリースブランチをマージ。
Browse files Browse the repository at this point in the history
  • Loading branch information
dromozoa committed Jan 23, 2019
2 parents 7fe960b + e3a7a5f commit 228575f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
rockspec_format = "3.0"
package = "dromozoa-multi"
version = "1.3-1"
version = "1.4-1"
source = {
url = "https://github.com/dromozoa/dromozoa-multi/releases/download/v1.3/dromozoa-multi-1.3.tar.gz";
url = "https://github.com/dromozoa/dromozoa-multi/releases/download/v1.4/dromozoa-multi-1.4.tar.gz";
}
description = {
summary = "Multiple Lua states and native threads";
Expand Down
2 changes: 2 additions & 0 deletions thread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,12 @@ namespace dromozoa {
break;
case LUA_TLIGHTUSERDATA:
lua_pushlightuserdata(that->get(), lua_touserdata(L, i));
++n;
break;
default:
lua_pop(that->get(), n);
luaL_argerror(L, i, "nil/number/boolean/string expected");
return;
}
}
luaX_push(that->get(), n);
Expand Down
2 changes: 1 addition & 1 deletion version.m4
Original file line number Diff line number Diff line change
@@ -1 +1 @@
m4_define(DROMOZOA_MULTI_VERSION,1.3)
m4_define(DROMOZOA_MULTI_VERSION,1.4)

0 comments on commit 228575f

Please sign in to comment.