Skip to content

Commit ca92cd6

Browse files
committed
change debug to release for amd64_nt and fix C generated error stderr
keyword which had syntax error constant
1 parent c19fc30 commit ca92cd6

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/amd64_nt.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ jobs:
4949
wget --quiet "${{ inputs.release }}/${{ inputs.bootstrap }}"
5050
7z x -o.. "${{ inputs.bootstrap }}"
5151
cmake -S ..\bootstrap -B ..\build -DCMAKE_INSTALL_PREFIX=%CM3_INSTALL% -A x64
52-
cmake --build ..\build
53-
cmake --install ..\build --config Debug
52+
cmake --build ..\build --config Release
53+
cmake --install ..\build --config Release
5454
echo %CM3_INSTALL%\bin>>%GITHUB_PATH%
5555
5656
- name: Fetch sources

m3-ui/formsedit/src/FormsEditVBT.m3

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ TYPE (* in alphabetical order *)
7979
Editor = FormsVBT.T OBJECT
8080
(* The components to which we need fast access *)
8181
buffer : TextEditVBT.T;
82-
stderr : TextEditVBT.T;
82+
stdErr : TextEditVBT.T;
8383
errorPopup: ZChassisVBT.T;
8484
(* The internals of the buffer *)
8585
textport: EPort;
@@ -593,7 +593,7 @@ PROCEDURE EditorInit (ed: Editor; frame: T): Editor RAISES {FormsVBT.Error} =
593593
Manpage.Init (ed, HelpFile, NEW (ER, ed := ed), helpcase := NIL,
594594
path := formseditPath);
595595
ed.buffer := FormsVBT.GetVBT (ed, "buffer");
596-
ed.stderr := FormsVBT.GetVBT (ed, "stderr");
596+
ed.stdErr := FormsVBT.GetVBT (ed, "stderr");
597597
ed.errorPopup := FormsVBT.GetVBT (ed, "errorPopup");
598598
ed.textport := ed.buffer.tp;
599599
ed.vtext := TextPort.GetVText (ed.textport);
@@ -987,7 +987,7 @@ PROCEDURE Gripe (ed: Editor; fmt: TEXT; a, b, c, d, e: TEXT := NIL) =
987987
<* LL = VBT.mu *>
988988
BEGIN
989989
IF a # NIL THEN fmt := Fmt.F (fmt, a, b, c, d, e) END;
990-
TextPort.SetText (ed.stderr.tp, fmt);
990+
TextPort.SetText (ed.stdErr.tp, fmt);
991991
ZChildVBT.Pop (ed.errorPopup);
992992
EVAL Thread.Fork (NEW (Edown, stackSize := 3000, ed := ed))
993993
END Gripe;
@@ -1012,7 +1012,7 @@ PROCEDURE ClearError (ed: Editor) =
10121012
<* FATAL FormsVBT.Error *>(* "errorPopup" exists. *)
10131013
BEGIN
10141014
FormsVBT.PopDown (ed, "errorPopup");
1015-
TextPort.SetText (ed.stderr.tp, "")
1015+
TextPort.SetText (ed.stdErr.tp, "")
10161016
END ClearError;
10171017

10181018
PROCEDURE NoteModification (eport: EPort) =

0 commit comments

Comments
 (0)