summaryrefslogtreecommitdiffstats
path: root/generic/tclDictObj.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2015-10-19 13:52:58 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2015-10-19 13:52:58 (GMT)
commitec590efe63eabdd8f4a8768f8cadab88ba95033e (patch)
treeab6108d7447fa27e78e08bded7ce10e647d82220 /generic/tclDictObj.c
parent602a687e5116fe133efb686f83f92cb108429306 (diff)
downloadtcl-ec590efe63eabdd8f4a8768f8cadab88ba95033e.zip
tcl-ec590efe63eabdd8f4a8768f8cadab88ba95033e.tar.gz
tcl-ec590efe63eabdd8f4a8768f8cadab88ba95033e.tar.bz2
typo in comment. Eliminate unnecessary end-of-line spacing.
Diffstat (limited to 'generic/tclDictObj.c')
-rw-r--r--generic/tclDictObj.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclDictObj.c b/generic/tclDictObj.c
index 980f0a8..c8474e6 100644
--- a/generic/tclDictObj.c
+++ b/generic/tclDictObj.c
@@ -3051,14 +3051,14 @@ DictFilterCmd(
Tcl_IncrRefCount(valueObj);
if (Tcl_ObjSetVar2(interp, keyVarObj, NULL, keyObj,
TCL_LEAVE_ERR_MSG) == NULL) {
- Tcl_AddErrorInfo(interp,
+ Tcl_AddErrorInfo(interp,
"\n (\"dict filter\" filter script key variable)");
result = TCL_ERROR;
goto abnormalResult;
}
if (Tcl_ObjSetVar2(interp, valueVarObj, NULL, valueObj,
TCL_LEAVE_ERR_MSG) == NULL) {
- Tcl_AddErrorInfo(interp,
+ Tcl_AddErrorInfo(interp,
"\n (\"dict filter\" filter script value variable)");
result = TCL_ERROR;
goto abnormalResult;