| 622 | } |
| 623 | |
| 624 | static int Tcl_ops_record(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 625 | wrapper->resetCommandLine(argc, 1, argv); |
| 626 | |
| 627 | if (OPS_record() < 0) return TCL_ERROR; |
| 628 | |
| 629 | return TCL_OK; |
| 630 | } |
| 631 | |
| 632 | static int Tcl_ops_save(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 633 | wrapper->resetCommandLine(argc, 1, argv); |
nothing calls this directly
no test coverage detected