summaryrefslogtreecommitdiffstats
path: root/generic/tclResult.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-01-08 12:51:29 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-01-08 12:51:29 (GMT)
commit0df818c01fec80789e1b6b0e5182d5a321bcd171 (patch)
treecbaa9086b802260443c68afdf221cdeccec91d4a /generic/tclResult.c
parent6dcb4cb65c8f36fa851d95eca2a23fb580d82db2 (diff)
parent3b3abe0ce145a48c4426746f839aa29867e5991b (diff)
downloadtcl-0df818c01fec80789e1b6b0e5182d5a321bcd171.zip
tcl-0df818c01fec80789e1b6b0e5182d5a321bcd171.tar.gz
tcl-0df818c01fec80789e1b6b0e5182d5a321bcd171.tar.bz2
Use _copysign on Windows always (available from float.h). Use mp_iszero() whenever appropriate.
Diffstat (limited to 'generic/tclResult.c')
-rw-r--r--generic/tclResult.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclResult.c b/generic/tclResult.c
index bdb3912..aceb2f5 100644
--- a/generic/tclResult.c
+++ b/generic/tclResult.c
@@ -1703,12 +1703,12 @@ Tcl_TransferResult(
* should be moved to the target interp.
* After moving result, this interp's result
* is reset. */
- int code, /* The return code value active in
+ int code, /* The return code value active in
* sourceInterp. Controls how the return options
* dictionary is retrieved from sourceInterp,
* same as in Tcl_GetReturnOptions, to then be
* transferred to targetInterp. */
- Tcl_Interp *targetInterp) /* Interp where result and return options
+ Tcl_Interp *targetInterp) /* Interp where result and return options
* should be stored. If source and target are
* the same, nothing is done. */
{