Search:
Login
Preferences
Help/Guide
About Trac
Wiki
Timeline
Roadmap
Browse Source
View Tickets
New Ticket
Search
Context Navigation
←
Previous Changeset
Next Changeset
→
Changeset 6237ded
View differences
inline
side by side
Show
lines around each change
Show the changes in full context
Ignore:
Blank lines
Case changes
White space changes
Timestamp:
2006-10-22T13:58:32Z (
18 years
ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
bbb6ffb
,
bd28e6a
,
e8a6211
Parents:
28eda86
Message:
set_eval_int() was pretty broken...
File:
1 edited
set.c
(modified)
(
2 diffs
)
Legend:
Unmodified
Added
Removed
set.c
r28eda86
r6237ded
173
173
char *set_eval_int( set_t *set, char *value )
174
174
{
175
char *s
;
175
char *s
= value
;
176
176
177
177
/* Allow a minus at the first position. */
…
…
179
179
s ++;
180
180
181
for(
s = value
; *s; s ++ )
181
for(
; *s; s ++ )
182
182
if( !isdigit( *s ) )
183
183
return NULL;
Note:
See
TracChangeset
for help on using the changeset viewer.
Download in other formats:
Unified Diff
Zip Archive