aboutsummaryrefslogtreecommitdiff
path: root/jim.c
diff options
context:
space:
mode:
authorØyvind Harboe <oyvind.harboe@zylin.com>2010-10-04 13:19:03 +0200
committerØyvind Harboe <oyvind.harboe@zylin.com>2010-10-04 13:19:03 +0200
commit1ec055dfbe6db8839064d891e64e46e136c39b09 (patch)
treef88b2a89ed4c9130dc40903a8f5d9f1c24ede5fe /jim.c
parent24801249d328bdb0cb046bb321dd917249ad36b6 (diff)
downloadjimtcl-1ec055dfbe6db8839064d891e64e46e136c39b09.zip
jimtcl-1ec055dfbe6db8839064d891e64e46e136c39b09.tar.gz
jimtcl-1ec055dfbe6db8839064d891e64e46e136c39b09.tar.bz2
lists: fix crash in ListInsertElements0.51
It wasn't added to the API list => NPE JIM_REGISTER_API(ListInsertElements); Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
Diffstat (limited to 'jim.c')
-rw-r--r--jim.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/jim.c b/jim.c
index c098b86..5041808 100644
--- a/jim.c
+++ b/jim.c
@@ -9337,6 +9337,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);