Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

[Bug 22555] Keep compile errors in SE w/o LiveError on #2117

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -742,6 +742,15 @@ command scriptCompile pObject
setCompilationErrors line 1 of tResult, pObject
put "error" into tState
end if
else
send "clearErrors" to group "Errors" of the owner of me
if tResult is empty then
setCompilationErrors empty, pObject
else
send "addError compilation, line 1 of tResult, pObject" to group "Errors" of the owner of me
setCompilationErrors line 1 of tResult, pObject
put "error" into tState
end if
end if

seSetObjectState pObject, tState
Expand Down
1 change: 1 addition & 0 deletions notes/bugfix-22555.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Flag compile errors consistently when LiveError is turned off