Changeset 480 for trunk/thune/make.c

Show
Ignore:
Timestamp:
09/24/07 23:27:09 (14 months ago)
Author:
krobillard
Message:

Line comments now set SOL for next value.
Select! now supports a negative index.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/thune/make.c

    r469 r480  
    10541054    if( count == (UR_MAX_PATH_LEN - 1) ) \ 
    10551055        return 0; \ 
    1056     if( *cp >= '0' && *cp <= '9' ) \ 
    1057     { \ 
     1056    if( (*cp >= '0' && *cp <= '9') || (*cp == '-') ) { \ 
    10581057        node[ count ] = ur_stringToInt( cp, it, 0 ); \ 
    10591058    } else { \