aboutsummaryrefslogtreecommitdiff
path: root/jim.h
diff options
context:
space:
mode:
authorantirez <antirez>2005-03-12 20:26:31 +0000
committerantirez <antirez>2005-03-12 20:26:31 +0000
commit27360bcb63a4f560337ad2eb9b0ac1485503cab8 (patch)
tree5d5a138e8878049e5a1feb18158145ad1748a5bc /jim.h
parent6608136e6de05503dc2ce737219a963643af4674 (diff)
downloadjimtcl-27360bcb63a4f560337ad2eb9b0ac1485503cab8.zip
jimtcl-27360bcb63a4f560337ad2eb9b0ac1485503cab8.tar.gz
jimtcl-27360bcb63a4f560337ad2eb9b0ac1485503cab8.tar.bz2
Added the ability to compile with -DJIM_ANSIC to use only ANSI-C
features and libraries.
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 e997ab6..1424a0f 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.49 2005/03/12 09:18:53 antirez Exp $
+ * $Id: jim.h,v 1.50 2005/03/12 20:26:31 antirez Exp $
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -111,7 +111,7 @@
#define JIM_RETURN 2
#define JIM_BREAK 3
#define JIM_CONTINUE 4
-#define JIM_MAX_NESTING_DEPTH 5000 /* default max nesting depth */
+#define JIM_MAX_NESTING_DEPTH 10000 /* default max nesting depth */
/* Some function get an integer argument with flags to change
* the behaviour. */