Changeset 125

Show
Ignore:
Timestamp:
05/29/08 07:21:11 (6 months ago)
Author:
matthiasm
Message:

Sigh. Must learn lexx and yacc.

Location:
NEWT0/branches/DyneTK
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • NEWT0/branches/DyneTK/platform/VisualC6/newt_lib.vcproj

    r111 r125  
    118118                Optimization="0" 
    119119                AdditionalIncludeDirectories="../../src,../../src/newt_core/incs,../../src/newt_core/incs/VC6,../../src/parser" 
    120                 PreprocessorDefinitions="_DEBUG;WIN32;_LIB;HAVE_CONFIG_H" 
     120                PreprocessorDefinitions="_DEBUG;WIN32;_LIB;HAVE_CONFIG_H;YYERROR_VERBOSE" 
    121121                MinimalRebuild="true" 
    122122                BasicRuntimeChecks="3" 
  • NEWT0/branches/DyneTK/src/parser/newt.y

    r124 r125  
    456456        : kIF expr kTHEN expr                   { $$ = NPSGenIfThenElse($2, $4, kNewtRefUnbind); } 
    457457        | kIF expr kTHEN expr kELSE expr        { $$ = NPSGenIfThenElse($2, $4, $6); } 
    458         | kIF expr kTHEN expr ';' kELSE expr    { $$ = NPSGenIfThenElse($2, $4, $7); } 
     458//      | kIF expr kTHEN expr ';' kELSE expr    { $$ = NPSGenIfThenElse($2, $4, $7); } 
    459459        ; 
    460460