Show
Ignore:
Timestamp:
10/03/08 01:50:39 (3 months ago)
Author:
tekisuke
Message:

lang/actionscript/flmml/: マクロの再起呼び出し時の処理をコピペしてたため、undefinedな文字列を挿入してしまっていたので修正。

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/actionscript/flmml/trunk/src/com/txt_nifty/sketch/flmml/MML.as

    r20421 r20536  
    489489            idx = str.indexOf(id0); 
    490490            while(idx >= 0) { 
    491                 str = str.substring(0, idx) + valArr[i] + str.substring(idx + id0.length); 
     491                str = str.substring(0, idx) + str.substring(idx + id0.length); 
    492492                idx = str.indexOf(id0, idx); 
    493493                warning(MWarning.RECURSIVE_MACRO, id0);