re_goto_bottom(): * used to go to last used screen line */
| 341 | * used to go to last used screen line |
| 342 | */ |
| 343 | protected void |
| 344 | re_goto_bottom(EditLine *el) |
| 345 | { |
| 346 | |
| 347 | terminal_move_to_line(el, el->el_refresh.r_oldcv); |
| 348 | terminal__putc(el, '\n'); |
| 349 | re_clear_display(el); |
| 350 | terminal__flush(el); |
| 351 | } |
| 352 | |
| 353 | |
| 354 | /* re_insert(): |
no test coverage detected