Corrected the "format" command, which failed to return TCL_OK

after executing the command with non-zero options.
This commit is contained in:
Tim Edwards 2021-11-11 08:42:46 -05:00
parent e4a15f12fb
commit 20f6d76926
2 changed files with 2 additions and 1 deletions

View File

@ -1 +1 @@
1.5.208
1.5.209

View File

@ -2066,6 +2066,7 @@ _netcmp_format(ClientData clientData,
Tcl_WrongNumArgs(interp, 1, objv, "[col1_width [col2_width]]");
return TCL_ERROR;
}
return TCL_OK;
}
/*------------------------------------------------------*/