| 630 | } |
| 631 | |
| 632 | static int Tcl_ops_save(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 633 | wrapper->resetCommandLine(argc, 1, argv); |
| 634 | |
| 635 | if (OPS_save() < 0) return TCL_ERROR; |
| 636 | |
| 637 | return TCL_OK; |
| 638 | } |
| 639 | |
| 640 | static int Tcl_ops_restore(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 641 | wrapper->resetCommandLine(argc, 1, argv); |
nothing calls this directly
no test coverage detected