| 430 | } |
| 431 | |
| 432 | static int Tcl_ops_remove(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 433 | wrapper->resetCommandLine(argc, 1, argv); |
| 434 | |
| 435 | if (OPS_removeObject() < 0) return TCL_ERROR; |
| 436 | |
| 437 | return TCL_OK; |
| 438 | } |
| 439 | |
| 440 | static int Tcl_ops_mass(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 441 | wrapper->resetCommandLine(argc, 1, argv); |
nothing calls this directly
no test coverage detected