Changeset 3990 for neercs/trunk
- Timestamp:
- Nov 21, 2009, 4:18:47 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
neercs/trunk/src/term.c
r3989 r3990 160 160 *x = *x - 1; 161 161 } 162 162 else if (c == '\x0b') /* Vertical tab */ 163 { 164 if (*y < caca_get_canvas_height(sc->cv)) 165 *y = *y + 1; 166 } 163 167 else if (c == '\x0e') 164 168 { … … 548 552 break; 549 553 case 'C': /* CUF (0x43) - Cursor Right */ 550 debug("ansi : CUF %d \n", argc ? argv[0] : 1);551 554 x += argc ? argv[0] : 1; 552 555 break;
Note: See TracChangeset
for help on using the changeset viewer.