Method: Curses::Window#delch

Defined in:
ext/curses/curses.c

#delchObject

Delete the character under the cursor



2593
2594
2595
2596
2597
2598
2599
2600
2601
# File 'ext/curses/curses.c', line 2593

static VALUE
window_delch(VALUE obj)
{
    struct windata *winp;

    GetWINDOW(obj, winp);
    wdelch(winp->window);
    return Qnil;
}