Rev 5617 | Rev 7673 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 5617 | Rev 6525 | ||
---|---|---|---|
Line 209... | Line 209... | ||
209 | for(ps=p, p1=find_mathvar_start(p); *p1; p1=find_mathvar_start(p2)) { |
209 | for(ps=p, p1=find_mathvar_start(p); *p1; p1=find_mathvar_start(p2)) { |
210 | p2=find_mathvar_end(p1); |
210 | p2=find_mathvar_end(p1); |
211 | if(!isalpha(*p1)) continue; |
211 | if(!isalpha(*p1)) continue; |
212 | if(strncmp(p1,"qzis",4)==0) { |
212 | if(strncmp(p1,"qzis",4)==0) { |
213 | char *p3, *p4, *p5; |
213 | char *p3, *p4, *p5; |
214 |
|
214 | /*int tt;*/ |
215 | p4=find_word_start(p2); |
215 | p4=find_word_start(p2); |
216 | if(*p4!='(') continue; |
216 | if(*p4!='(') continue; |
217 | if(strncmp(p1+4,"not",3)==0) { |
217 | if(strncmp(p1+4,"not",3)==0) {/*tt=4;*/ p3=p1+7;} |
218 | else { |
218 | else {/*tt=3; */p3=p1+4;} |
219 | if(!isalpha(*p3)) continue; |
219 | if(!isalpha(*p3)) continue; |
220 | p4++; p5=find_matching(p4,')'); |
220 | p4++; p5=find_matching(p4,')'); |
221 | if(*p5!=')') continue; |
221 | if(*p5!=')') continue; |
222 | *p5=0; *p2=0; p2=p5+1; |
222 | *p5=0; *p2=0; p2=p5+1; |
223 | 223 |