aboutsummaryrefslogtreecommitdiff
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
parentf9dc13859967394fb1a2848cfae028cfb171bc49 (diff)
downloadjimtcl-0234b2d8533d89ecfdacaf3783fd758d86131689.zip
jimtcl-0234b2d8533d89ecfdacaf3783fd758d86131689.tar.gz
jimtcl-0234b2d8533d89ecfdacaf3783fd758d86131689.tar.bz2
Max nesting depth modified to 10000
-rw-r--r--ChangeLog5
-rw-r--r--jim.h4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 96f30e2..e0453e0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-03-13 16:53 antirez
+
+ * ChangeLog, jim.c: [string first]. Tests still not added, until
+ [string] is not (almost instead) complete.
+
2005-03-13 09:36 antirez
* ChangeLog, jim.c: [string index] implemented
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 */