diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2006-11-02 11:32:18 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2006-11-02 11:32:18 (GMT) |
commit | 91e591f7c1663085db484e07d09d5fe12a9d10b0 (patch) | |
tree | 3036f7a37b4f55e8a464f8f3b42f9624e540cdaf /generic | |
parent | 311b1f02cfac9331df9dd37d9d582b095ad36102 (diff) | |
download | tcl-91e591f7c1663085db484e07d09d5fe12a9d10b0.zip tcl-91e591f7c1663085db484e07d09d5fe12a9d10b0.tar.gz tcl-91e591f7c1663085db484e07d09d5fe12a9d10b0.tar.bz2 |
Remove confusing line break
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclBasic.c | 5 |
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; } |