ed_clear_screen(): * Clear screen leaving current line at the top * [^L] */
| 580 | * [^L] |
| 581 | */ |
| 582 | protected el_action_t |
| 583 | /*ARGSUSED*/ |
| 584 | ed_clear_screen(EditLine *el, Int c __attribute__((__unused__))) |
| 585 | { |
| 586 | |
| 587 | terminal_clear_screen(el); /* clear the whole real screen */ |
| 588 | re_clear_display(el); /* reset everything */ |
| 589 | return CC_REFRESH; |
| 590 | } |
| 591 | |
| 592 | |
| 593 | /* ed_redisplay(): |
nothing calls this directly
no test coverage detected