2
0
mirror of git://git.code.sf.net/p/openocd/code synced 2025-07-24 01:59:55 +10:00

jim: fix crash when using Jim_ListInsertElements

Jim_ListInsertElements was simply forgotten from the
fn that registered all the APIs.

Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
This commit is contained in:
Øyvind Harboe 2010-09-12 20:16:55 +02:00
parent 505d4633cd
commit 73e5dffdfd

View File

@ -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);