aboutsummaryrefslogtreecommitdiff
path: root/jim.h
diff options
context:
space:
mode:
authorantirez <antirez>2005-04-10 09:51:11 +0000
committerantirez <antirez>2005-04-10 09:51:11 +0000
commit0212cfb56d1daa73e41bbc97e66058bd7ac04b5a (patch)
tree5eb5d714d63edccd3656a7593ba272cdaba73e4d /jim.h
parentf258bd697f57690c34211040d94e1b90055eb886 (diff)
downloadjimtcl-0212cfb56d1daa73e41bbc97e66058bd7ac04b5a.zip
jimtcl-0212cfb56d1daa73e41bbc97e66058bd7ac04b5a.tar.gz
jimtcl-0212cfb56d1daa73e41bbc97e66058bd7ac04b5a.tar.bz2
Fix for [return -code eval]
Diffstat (limited to 'jim.h')
-rw-r--r--jim.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/jim.h b/jim.h
index d939406..827c40c 100644
--- a/jim.h
+++ b/jim.h
@@ -2,7 +2,7 @@
* Copyright 2005 Salvatore Sanfilippo <antirez@invece.org>
* Copyright 2005 Clemens Hintze <c.hintze@gmx.net>
*
- * $Id: jim.h,v 1.71 2005/04/09 12:57:49 antirez Exp $
+ * $Id: jim.h,v 1.72 2005/04/10 09:51:11 antirez Exp $
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -468,8 +468,8 @@ typedef struct Jim_Interp {
Jim_Obj *stackTrace; /* Stack trace object. */
Jim_Obj *unknown; /* Unknown command cache */
int errorFlag; /* Set if an error occurred during execution. */
- int evalRetcodeFlag; /* True if the current script is executed as result
- of a JIM_EVAL retcode. */
+ int evalRetcodeLevel; /* Level where the last return with code JIM_EVAL
+ happened. */
void *cmdPrivData; /* Used to pass the private data pointer to
a command. It is set to what the user specified
via Jim_CreateCommand(). */