Changeset 37 for trunk/Compiler/Produce/UProducer.pas
- Timestamp:
- Feb 14, 2012, 7:33:51 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Compiler/Produce/UProducer.pas
r30 r37 17 17 TextSource: TStringList; 18 18 IndentationLength: Integer; 19 Indetation: Integer; 19 Indentation: Integer; 20 CompilerPath: string; 20 21 procedure Emit(AText: string); 21 22 procedure EmitLn(AText: string = ''); … … 56 57 if Count = 0 then Add(''); 57 58 if Strings[Count - 1] = '' then 58 Strings[Count - 1] := Strings[Count - 1] + DupeString(' ', IndentationLength * Inde tation);59 Strings[Count - 1] := Strings[Count - 1] + DupeString(' ', IndentationLength * Indentation); 59 60 Strings[Count - 1] := Strings[Count - 1] + AText; 60 61 end;
Note:
See TracChangeset
for help on using the changeset viewer.