Changeset 3990


Ignore:
Timestamp:
11/21/09 16:18:47 (3 years ago)
Author:
jylam
Message:
  • VT Vertical Tab support (\x0b). vttest A B C D E F G H now completes gently.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • neercs/trunk/src/term.c

    r3989 r3990  
    160160            *x = *x - 1; 
    161161    } 
    162  
     162    else if (c == '\x0b') /* Vertical tab */ 
     163    { 
     164        if (*y < caca_get_canvas_height(sc->cv)) 
     165            *y = *y + 1;  
     166    }     
    163167    else if (c == '\x0e') 
    164168    { 
     
    548552            break; 
    549553        case 'C':              /* CUF (0x43) - Cursor Right */ 
    550             debug("ansi : CUF %d \n", argc ? argv[0] : 1); 
    551554            x += argc ? argv[0] : 1; 
    552555            break; 
Note: See TracChangeset for help on using the changeset viewer.