Corrected the "format" command, which failed to return TCL_OK
after executing the command with non-zero options.
This commit is contained in:
parent
e4a15f12fb
commit
20f6d76926
|
|
@ -2066,6 +2066,7 @@ _netcmp_format(ClientData clientData,
|
||||||
Tcl_WrongNumArgs(interp, 1, objv, "[col1_width [col2_width]]");
|
Tcl_WrongNumArgs(interp, 1, objv, "[col1_width [col2_width]]");
|
||||||
return TCL_ERROR;
|
return TCL_ERROR;
|
||||||
}
|
}
|
||||||
|
return TCL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*------------------------------------------------------*/
|
/*------------------------------------------------------*/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue