summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2019-09-03 19:32:55 (GMT)
committerdgp <dgp@users.sourceforge.net>2019-09-03 19:32:55 (GMT)
commit33082103364e48e4837709e07c6af56f6b7d49ee (patch)
tree3d4202ca293dbc4e194518b002eac173e30418b0
parent6e5bee537f289d191bad01f4df94197a00639f7f (diff)
downloadtcl-33082103364e48e4837709e07c6af56f6b7d49ee.zip
tcl-33082103364e48e4837709e07c6af56f6b7d49ee.tar.gz
tcl-33082103364e48e4837709e07c6af56f6b7d49ee.tar.bz2
Expand acronym in comment.
-rw-r--r--generic/tclCompile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCompile.c b/generic/tclCompile.c
index 1a7d32f..680ab66 100644
--- a/generic/tclCompile.c
+++ b/generic/tclCompile.c
@@ -2127,8 +2127,8 @@ TclCompileScript(
Tcl_Panic("TclCompileScript() called on uninitialized CompileEnv");
}
/*
- * Check depth to avoid SO by too many nested calls of TclCompileScript
- * (considering interp recursionlimit).
+ * Check depth to avoid overflow of the C execution stack by too many
+ * nested calls of TclCompileScript (considering interp recursionlimit).
* Factor 5/4 (1.25) is used to avoid too mistaken limit recognition
* during "mixed" evaluation and compilation process (nested eval+compile)
* and is good enough for default recursionlimit (1000).