summaryrefslogtreecommitdiffstats
path: root/generic/tclBasic.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2006-11-02 11:32:18 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2006-11-02 11:32:18 (GMT)
commit91e591f7c1663085db484e07d09d5fe12a9d10b0 (patch)
tree3036f7a37b4f55e8a464f8f3b42f9624e540cdaf /generic/tclBasic.c
parent311b1f02cfac9331df9dd37d9d582b095ad36102 (diff)
downloadtcl-91e591f7c1663085db484e07d09d5fe12a9d10b0.zip
tcl-91e591f7c1663085db484e07d09d5fe12a9d10b0.tar.gz
tcl-91e591f7c1663085db484e07d09d5fe12a9d10b0.tar.bz2
Remove confusing line break
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r--generic/tclBasic.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index 0518d72..cf83e83 100644
--- a/generic/tclBasic.c
+++ b/generic/tclBasic.c
@@ -13,7 +13,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclBasic.c,v 1.210 2006/11/02 09:42:07 dkf Exp $
+ * RCS: @(#) $Id: tclBasic.c,v 1.211 2006/11/02 11:32:18 dkf Exp $
*/
#include "tclInt.h"
@@ -3584,8 +3584,7 @@ Tcl_EvalObjv(
if (code == TCL_RETURN) {
code = TclUpdateReturnInfo(iPtr);
}
- if ((code != TCL_OK) && (code != TCL_ERROR)
- && !allowExceptions) {
+ if ((code != TCL_OK) && (code != TCL_ERROR) && !allowExceptions) {
ProcessUnexpectedResult(interp, code);
code = TCL_ERROR;
}