﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
646	Call statement -- setting of @error	pdaughe	Valik	"Following execution of the Call statement, @error may be set by the called function. Thus, @error does not indicate the called function does not exist. In previous AutoIt releases, @error was only set if the called function did not exist, as documented.

{{{
Call (""Test"")
If @error Then MsgBox (0, ""Test"", ""Error = "" & @error)
Func Test ()
SetError (2)
EndFunc
}}}
I wasn't sure what to put under severity, but for me, this is a significant issue. A global variable can be used to retrieve the error code of the called function if necessary."	Bug	closed	3.2.13.10	AutoIt	3.2.13.9	None	Fixed	Call, @error	
