ed_start_over(): * Erase current line and start from scratch * [^G] */
| 609 | * [^G] |
| 610 | */ |
| 611 | protected el_action_t |
| 612 | /*ARGSUSED*/ |
| 613 | ed_start_over(EditLine *el, Int c __attribute__((__unused__))) |
| 614 | { |
| 615 | |
| 616 | ch_reset(el, 0); |
| 617 | return CC_REFRESH; |
| 618 | } |
| 619 | |
| 620 | |
| 621 | /* ed_sequence_lead_in(): |
nothing calls this directly
no test coverage detected