Changeset 537 for trunk/thune/thune.c

Show
Ignore:
Timestamp:
06/07/08 03:35:15 (6 months ago)
Author:
krobillard
Message:

Added show, hide, and gui_setMouseFocus().
Quit & halt propogate up nested ur_eval() calls.
Thune-gl RPM builds again.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/thune/thune.c

    r533 r537  
    773773 
    774774                case OP_HALT: 
     775                    UR_CALL_OP = OP_HALT; 
    775776                    EMH_HALT(pc, end) 
    776777                    goto halt; 
     
    778779                case OP_QUIT: 
    779780                    UR_S_PUSH( *val ); 
     781                    UR_CALL_OP = OP_QUIT; 
    780782                    goto quit; 
    781783 
     
    10161018 
    10171019                case OP_HALT: 
    1018                     UR_CALL_OP = 0; 
     1020                    //UR_CALL_OP = 0; 
    10191021                    goto halt; 
    10201022 
    10211023                case OP_QUIT: 
    1022                     UR_CALL_OP = 0; 
     1024                    //UR_CALL_OP = 0; 
    10231025                    goto quit; 
    10241026