aboutsummaryrefslogtreecommitdiff
path: root/jim.h
diff options
context:
space:
mode:
authorantirez <antirez>2005-03-13 17:43:13 +0000
committerantirez <antirez>2005-03-13 17:43:13 +0000
commit0234b2d8533d89ecfdacaf3783fd758d86131689 (patch)
treeee3b6a5765cfb50bf8c422f26207828ec7989ffd /jim.h
parentf9dc13859967394fb1a2848cfae028cfb171bc49 (diff)
downloadjimtcl-0234b2d8533d89ecfdacaf3783fd758d86131689.zip
jimtcl-0234b2d8533d89ecfdacaf3783fd758d86131689.tar.gz
jimtcl-0234b2d8533d89ecfdacaf3783fd758d86131689.tar.bz2
Max nesting depth modified to 10000
Diffstat (limited to 'jim.h')
-rw-r--r--jim.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/jim.h b/jim.h
index 1424a0f..ebf25fc 100644
--- a/jim.h
+++ b/jim.h
@@ -1,7 +1,7 @@
/* Jim - A small embeddable Tcl interpreter
* Copyright 2005 Salvatore Sanfilippo <antirez@invece.org>
*
- * $Id: jim.h,v 1.50 2005/03/12 20:26:31 antirez Exp $
+ * $Id: jim.h,v 1.51 2005/03/13 17:43:13 antirez Exp $
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -437,7 +437,7 @@ typedef struct Jim_Interp {
Jim_Obj *unknown; /* Unknown command cache */
int errorFlag; /* Set if an error occurred during execution. */
void *cmdPrivData; /* Used to pass the private data pointer to
- command. It is set to what the user specified
+ a command. It is set to what the user specified
via Jim_CreateCommand(). */
struct Jim_HashTable stub; /* Stub hash table to export API */