Changeset 1314


Ignore:
Timestamp:
09/04/11 22:50:36 (21 months ago)
Author:
reyalp
Message:

enable set_console_layout and set_console_autoredraw in ubasic

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/ubasic/ubasic.c

    r1221 r1314  
    14791479} 
    14801480/*---------------------------------------------------------------------------*/ 
    1481 //static void set_console_autoredraw(void) 
    1482 //{ 
    1483 //  accept(TOKENIZER_SET_CONSOLE_AUTOREDRAW); 
    1484 //  console_set_autoredraw(expr()); 
    1485 //  accept_cr(); 
    1486 //} 
     1481static void set_console_autoredraw(void) 
     1482{ 
     1483  accept(TOKENIZER_SET_CONSOLE_AUTOREDRAW); 
     1484  console_set_autoredraw(expr()); 
     1485  accept_cr(); 
     1486} 
    14871487/*---------------------------------------------------------------------------*/ 
    14881488static void console_redraw_statement(void) 
     
    21932193      set_capture_mode_canon_statement(); 
    21942194      break; 
     2195  case TOKENIZER_SET_CONSOLE_LAYOUT: 
     2196      set_console_layout(); 
     2197      break; 
     2198  case TOKENIZER_SET_CONSOLE_AUTOREDRAW: 
     2199      set_console_autoredraw(); 
     2200      break; 
    21952201  case TOKENIZER_CONSOLE_REDRAW: 
    21962202      console_redraw_statement(); 
Note: See TracChangeset for help on using the changeset viewer.