Differences From Artifact [5da0f9cd30]:
- File class.c — part of check-in [2f48f45b15] at 2021-05-01 01:29:33 on branch trunk — Implement "and ... then" and "or ... then" blocks. (user: user, size: 68902) [annotate] [blame] [check-ins using]
To Artifact [04c44003dc]:
- File class.c — part of check-in [75e286812e] at 2021-05-12 06:24:52 on branch trunk — Make so that numbers out of range 0 to 31 are ignored for the {bit} macro (user: user, size: 68916) [annotate] [blame] [check-ins using]
︙ | |||
828 829 830 831 832 833 834 | 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 | - + | ReturnToken(TF_NAME|TF_ABNORMAL,OP_STRING); case MAC_BIT: n=0; for(;;) { nxttok(); if(tokent==TF_MACRO+TF_CLOSE) break; if(tokent!=TF_INT) ParseError("Number expected\n"); |
︙ |