Changeset 385

Show
Ignore:
Timestamp:
05/16/07 02:28:18 (19 months ago)
Author:
krobillard
Message:

Thune - set now catches unbound words.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/thune/eval.c

    r378 r385  
    869869 
    870870        cell = ur_wordCell( ur_thread, tos ); 
     871        if( ! cell ) 
     872            return; 
    871873        ur_copyCell( cell, *val ); 
    872874    } 
     
    887889                { 
    888890                    cell = ur_wordCell( ur_thread, it ); 
     891                    if( ! cell ) 
     892                        return; 
    889893                    ur_pick( val, n++, cell ); 
    890894                } 
     
    899903                { 
    900904                    cell = ur_wordCell( ur_thread, it ); 
     905                    if( ! cell ) 
     906                        return; 
    901907                    ur_copyCell( cell, *val ); 
    902908                }