Changeset 49 in dev for BasicCompiler64/NumOpe.cpp
- Timestamp:
- Feb 10, 2007, 6:13:37 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler64/NumOpe.cpp
r41 r49 314 314 315 315 if(idProc){ 316 //閉じカッコ")"に続く文字がNULLでないときはエラーにする 317 if(term[i2+1+i4+1]!='\0') SetError(42,NULL,cp); 316 //閉じカッコ")"に続く文字がNULLでないとき 317 if(term[i2+1+i4+1]!='\0'){ 318 if( term[i2+1+i4+1] == '.' 319 || term[i2+1+i4+1] == 1 && term[i2+1+i4+2] == ESC_PSMEM ){ 320 goto NonProc; 321 } 322 else{ 323 SetError(42,NULL,cp); 324 } 325 } 318 326 319 327 … … 402 410 } 403 411 } 412 NonProc: 404 413 405 414
Note:
See TracChangeset
for help on using the changeset viewer.