summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorØyvind Harboe <oyvind.harboe@zylin.com>2010-09-12 20:16:55 +0200
committerØyvind Harboe <oyvind.harboe@zylin.com>2010-09-12 20:18:43 +0200
commit73e5dffdfd310bd09b5497f40db98f50eedeb31a (patch)
tree09d3bad80ae373f9417fd7e859b3bec56453b144 /src
parent505d4633cd7a4e8623ef70932cd7edc9f22e71d4 (diff)
downloadopenocd+libswd-73e5dffdfd310bd09b5497f40db98f50eedeb31a.tar.gz
openocd+libswd-73e5dffdfd310bd09b5497f40db98f50eedeb31a.tar.bz2
openocd+libswd-73e5dffdfd310bd09b5497f40db98f50eedeb31a.tar.xz
openocd+libswd-73e5dffdfd310bd09b5497f40db98f50eedeb31a.zip
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>
Diffstat (limited to 'src')
-rw-r--r--src/helper/jim.c1
1 files changed, 1 insertions, 0 deletions
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);