Method: Curses.insertln
- Defined in:
- ext/curses/curses.c
.insertln ⇒ Object
Inserts a line above the cursor, and the bottom line is lost
942 943 944 945 946 947 948 949 950 |
# File 'ext/curses/curses.c', line 942
static VALUE
curses_insertln(VALUE obj)
{
curses_stdscr();
#if defined(HAVE_INSERTLN) || defined(insertln)
insertln();
#endif
return Qnil;
}
|