Changeset 49 in dev for BasicCompiler32/NumOpe.cpp
- Timestamp:
- Feb 10, 2007, 6:13:37 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler32/NumOpe.cpp
r41 r49 284 284 285 285 if(idProc){ 286 //閉じカッコ")"に続く文字がNULLでないときはエラーにする 287 if(term[i2+1+i4+1]!='\0') SetError(42,NULL,cp); 286 //閉じカッコ")"に続く文字がNULLでないとき 287 if(term[i2+1+i4+1]!='\0'){ 288 if( term[i2+1+i4+1] == '.' 289 || term[i2+1+i4+1] == 1 && term[i2+1+i4+2] == ESC_PSMEM ){ 290 goto NonProc; 291 } 292 else{ 293 SetError(42,NULL,cp); 294 } 295 } 288 296 289 297 //////////////// … … 351 359 } 352 360 } 361 NonProc: 353 362 354 363
Note:
See TracChangeset
for help on using the changeset viewer.