aboutsummaryrefslogtreecommitdiffstats
path: root/src/lua/lua_rcl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lua/lua_rcl.c')
-rw-r--r--src/lua/lua_rcl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua/lua_rcl.c b/src/lua/lua_rcl.c
index 543e60cf2..cb5c46252 100644
--- a/src/lua/lua_rcl.c
+++ b/src/lua/lua_rcl.c
@@ -200,7 +200,7 @@ lua_rcl_elt_get (lua_State *L, gint idx)
obj->value.ud = GINT_TO_POINTER (luaL_ref (L, LUA_REGISTRYINDEX));
break;
case LUA_TSTRING:
- obj = ucl_object_fromstring (lua_tostring (L, idx));
+ obj = ucl_object_fromstring_common (lua_tostring (L, idx), 0, 0);
break;
case LUA_TNUMBER:
obj = ucl_object_fromdouble (lua_tonumber (L, idx));