Changeset 5eec897 for set.c


Ignore:
Timestamp:
2006-10-15T19:53:42Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
a5ac9f9, d74c644
Parents:
a3265629
Message:

set_eval_int() now allows negative integers.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • set.c

    ra3265629 r5eec897  
    175175        char *s;
    176176       
     177        /* Allow a minus at the first position. */
     178        if( *s == '-' )
     179                s ++;
     180       
    177181        for( s = value; *s; s ++ )
    178182                if( !isdigit( *s ) )
Note: See TracChangeset for help on using the changeset viewer.