Method: Curses::Window#insertln
- Defined in:
- ext/curses/curses.c
#insertln ⇒ Object
Inserts a line above the cursor, and the bottom line is lost
2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 |
# File 'ext/curses/curses.c', line 2627 static VALUE window_insertln(VALUE obj) { #if defined(HAVE_WINSERTLN) || defined(winsertln) struct windata *winp; GetWINDOW(obj, winp); winsertln(winp->window); #endif return Qnil; } |