aboutsummaryrefslogtreecommitdiff
path: root/jim-array.c
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2010-09-10 15:22:26 +1000
committerSteve Bennett <steveb@workware.net.au>2010-10-15 11:02:52 +1000
commit82594fa49fcc6a10cd020dda214688fda215605e (patch)
tree881462a91cf38fc4007878d08b6f5dfa4c8ed953 /jim-array.c
parentec978d041463c9effdb17018f064df29592f8d40 (diff)
downloadjimtcl-82594fa49fcc6a10cd020dda214688fda215605e.zip
jimtcl-82594fa49fcc6a10cd020dda214688fda215605e.tar.gz
jimtcl-82594fa49fcc6a10cd020dda214688fda215605e.tar.bz2
Reduce excessive stack usage
Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'jim-array.c')
-rw-r--r--jim-array.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/jim-array.c b/jim-array.c
index fa5bd74..d077cc8 100644
--- a/jim-array.c
+++ b/jim-array.c
@@ -101,7 +101,6 @@ static int array_cmd_get(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
Jim_SetResult(interp, dictObj);
}
else {
- /* REVISIT: We could create a dictionary rather than a list ... */
/* Only return the matching values */
resultObj = Jim_NewListObj(interp, NULL, 0);