- Timestamp:
- Aug 19, 2024, 11:38:05 AM (3 months ago)
- Location:
- trunk/Forms
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/FormConsole.pas
r153 r158 118 118 SetLength(Buffer, Count); 119 119 Text := Text + Buffer; 120 {$IFDEF UNIX}121 120 Text := StringReplace(Text, #10#13, LineEnding, [rfReplaceAll]); 122 {$ENDIF}123 121 while Pos(LineEnding, Text) > 0 do begin 124 122 Line := Copy(Text, 1, Pos(LineEnding, Text) - 1); … … 134 132 SetLength(Buffer, Count); 135 133 Text := Text + Buffer; 136 {$IFDEF UNIX}137 134 Text := StringReplace(Text, #10#13, LineEnding, [rfReplaceAll]); 138 {$ENDIF}139 135 while Pos(LineEnding, Text) > 0 do begin 140 136 Line := Copy(Text, 1, Pos(LineEnding, Text) - 1); -
trunk/Forms/FormMain.pas
r157 r158 5 5 uses 6 6 Classes, SysUtils, FileUtil, Forms, Controls, FormCPU, FormInput, 7 Graphics, Dialogs, Menus, ActnList, ComCtrls, ExtCtrls, Target, Registry,7 Graphics, Dialogs, Menus, ActnList, ComCtrls, ExtCtrls, Target, 8 8 LazFileUtils, FormOptions, FormMessages, FormTargets, FormCompileMultiple, 9 9 FormOutput, FormMemory, FormSourceCode, FormTargetCode, FormLog, FormEx,
Note:
See TracChangeset
for help on using the changeset viewer.