You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 2, 2024. It is now read-only.
Have several files that cause error when doing "Correct indentation" command. This seems to be related to the "editing" keyword. I have the sample code:
define variable vc1 as character.
define variable vc2 as character.
repeat:
if vc1 = "" then do:
update vc1 vc2
editing:
if frame-field = "vc2" then message "in vc2".
end.
end.
vc1 = "".
end.
Here if you try Ctrl+I you will get the error. If you comment out the editing block, the error goes away. I have some older code that I maintain that has editing blocks scattered throughout so need the "editing/end" pairs to match up.
Also, is there any way to determine or update the keywords that you have defined for OE ABL? If so I can fix and try on my side.