The R Project SVN R

Rev

Rev 40758 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 40758 Rev 40869
Line 1492... Line 1492...
1492
static void de_delete(control c)
1492
static void de_delete(control c)
1493
{
1493
{
1494
    DEstruct DE = getdata(c);
1494
    DEstruct DE = getdata(c);
1495
    DE->CellModified = TRUE;
1495
    DE->CellModified = TRUE;
1496
    DE->buf[0] = '\0';
1496
    DE->buf[0] = '\0';
1497
    DE->clength = -1;
1497
    DE->clength = 0;
1498
    DE->bufp = DE->buf + DE->clength;
1498
    DE->bufp = DE->buf + DE->clength;
1499
    closerect(DE);
1499
    closerect(DE);
1500
    highlightrect(DE);
1500
    highlightrect(DE);
1501
}
1501
}
1502
 
1502