summaryrefslogtreecommitdiffstats
path: root/generic/tclCmdAH.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2008-03-14 16:07:23 (GMT)
committerdgp <dgp@users.sourceforge.net>2008-03-14 16:07:23 (GMT)
commit25c98e6ecf1d1c3c2d355c446344111dd22b1a65 (patch)
tree7fa6cee137ae8e28b493f5937c742df1fc4813ed /generic/tclCmdAH.c
parent7def021c5c5d8f4ffbeba8c0d5b505369c1bd036 (diff)
downloadtcl-25c98e6ecf1d1c3c2d355c446344111dd22b1a65.zip
tcl-25c98e6ecf1d1c3c2d355c446344111dd22b1a65.tar.gz
tcl-25c98e6ecf1d1c3c2d355c446344111dd22b1a65.tar.bz2
missing char in error message
Diffstat (limited to 'generic/tclCmdAH.c')
-rw-r--r--generic/tclCmdAH.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCmdAH.c b/generic/tclCmdAH.c
index 1c2e7ce..e054c29 100644
--- a/generic/tclCmdAH.c
+++ b/generic/tclCmdAH.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclCmdAH.c,v 1.92 2008/03/07 19:15:57 dgp Exp $
+ * RCS: @(#) $Id: tclCmdAH.c,v 1.93 2008/03/14 16:07:23 dgp Exp $
*/
#include "tclInt.h"
@@ -1799,7 +1799,7 @@ Tcl_ForeachObjCmd(
valuePtr, TCL_LEAVE_ERR_MSG);
if (varValuePtr == NULL) {
Tcl_AppendObjToErrorInfo(interp, Tcl_ObjPrintf(
- "\n (setting foreach loop variable \"%s\"",
+ "\n (setting foreach loop variable \"%s\")",
TclGetString(varvList[i][v])));
result = TCL_ERROR;
goto done;