Ignore:
Timestamp:
Aug 16, 2007, 3:54:12 AM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler32/Compile_ProcOp.cpp

    r283 r285  
    296296    }
    297297
    298     cp=pUserProc->GetCodePos();
    299     for(;;cp++){
    300         if(IsCommandDelimitation(basbuf[cp])) break;
    301     }
    302     cp--;
     298    if( !pUserProc->IsAutoGeneration() )
     299    {
     300        cp=pUserProc->GetCodePos();
     301        for(;;cp++){
     302            if(IsCommandDelimitation(basbuf[cp])) break;
     303        }
     304        cp--;
     305    }
    303306
    304307    //ローカル変数に関する情報
Note: See TracChangeset for help on using the changeset viewer.