WinFBE icon indicating copy to clipboard operation
WinFBE copied to clipboard

Keyword "End" by itself will cause parser to exclude the sub/function from the functions list

Open PaulSquires opened this issue 1 year ago • 0 comments

Example code to show the problem:

Sub __quit(msg As String = "")
    db_write("(QUIT)")
    If Len(Trim(msg)) Then Beep : db_write(cTab & msg)
    set_removeImage()
    End
End Sub

Workaround:

Change End to End(0) or End(1)

PaulSquires avatar Sep 20 '24 09:09 PaulSquires