From 08bf8d2fc3bae52e3a82e0d3aeb016449dc63728 Mon Sep 17 00:00:00 2001 From: David Brown Date: Thu, 29 Sep 2016 10:28:40 +0100 Subject: [PATCH] Propagate NL spelling change to PlatformWindows. --- src/runtime/Platformwindows.Mod | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/runtime/Platformwindows.Mod b/src/runtime/Platformwindows.Mod index a538fdc5..8471eabb 100644 --- a/src/runtime/Platformwindows.Mod +++ b/src/runtime/Platformwindows.Mod @@ -50,7 +50,7 @@ VAR InterruptHandler: SignalHandler; - nl-: ARRAY 3 OF CHAR; (* Platform specific newline representation *) + NL-: ARRAY 3 OF CHAR; (* Platform specific newline representation *) @@ -616,7 +616,7 @@ BEGIN StdOut := getstdouthandle(); StdErr := getstderrhandle(); - nl[0] := 0DX; (* CR *) - nl[1] := 0AX; (* LF *) - nl[2] := 0X; + NL[0] := 0DX; (* CR *) + NL[1] := 0AX; (* LF *) + NL[2] := 0X; END Platform.