ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/words.c
(Generate patch)

Comparing ray/src/common/words.c (file contents):
Revision 1.2 by greg, Tue Jul 23 11:36:42 1991 UTC vs.
Revision 1.3 by greg, Thu Jul 25 14:36:49 1991 UTC

# Line 107 | Line 107 | char  *s, *ds;
107          register char  *cp;
108  
109          cp = iskip(s);
110 <        return(cp != NULL && strchr(*cp, ds) != NULL);
110 >        return(cp != NULL && strchr(ds, *cp) != NULL);
111   }
112  
113  
# Line 127 | Line 127 | char  *s, *ds;
127          register char  *cp;
128  
129          cp = fskip(s);
130 <        return(cp != NULL && strchr(*cp, ds) != NULL);
130 >        return(cp != NULL && strchr(ds, *cp) != NULL);
131   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines