From 73e5dffdfd310bd09b5497f40db98f50eedeb31a Mon Sep 17 00:00:00 2001 From: Øyvind Harboe Date: Sun, 12 Sep 2010 20:16:55 +0200 Subject: jim: fix crash when using Jim_ListInsertElements MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Jim_ListInsertElements was simply forgotten from the fn that registered all the APIs. Signed-off-by: Øyvind Harboe --- src/helper/jim.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/helper') diff --git a/src/helper/jim.c b/src/helper/jim.c index 071e5575..bb748387 100644 --- a/src/helper/jim.c +++ b/src/helper/jim.c @@ -9296,6 +9296,7 @@ void JimRegisterCoreApi(Jim_Interp *interp) JIM_REGISTER_API(CollectIfNeeded); JIM_REGISTER_API(GetIndex); JIM_REGISTER_API(NewListObj); + JIM_REGISTER_API(ListInsertElements); JIM_REGISTER_API(ListAppendElement); JIM_REGISTER_API(ListAppendList); JIM_REGISTER_API(ListLength); -- cgit v1.2.3