TroisVerites Posted February 28, 2012 Share Posted February 28, 2012 Hi , I don't know if this is the right section. In the Scar IDE , the function List window shows only procedures and not the functions. Is there something I made wrong ? Scar 3.31 Thanks for answers. Quote Link to comment Share on other sites More sharing options...
FHannes Posted February 28, 2012 Share Posted February 28, 2012 Does your script compile? Quote Link to comment Share on other sites More sharing options...
TroisVerites Posted February 28, 2012 Author Share Posted February 28, 2012 Yes script compile. But it is my fault , a space in the protype function . function MapF_Shine_Search(var Pt: TPoint ) : boolean; --> Bad function MapF_Shine_Search(var Pt: TPoint ): boolean; --> OK in the function List thanks Quote Link to comment Share on other sites More sharing options...
FHannes Posted February 28, 2012 Share Posted February 28, 2012 It's not desired but allowed, are you sure you're using 3.31 though? that bug was fixed in 3.31, works fine on my end... Quote Link to comment Share on other sites More sharing options...
TroisVerites Posted February 29, 2012 Author Share Posted February 29, 2012 (edited) Yes I use Scar Divi 3.31 [scar] // No good in the function List program New; function ABC(i:integer) :boolean; // Space problem begin result:=false; end; begin ABC(); end. [/scar ] Edited February 29, 2012 by TroisVerites Quote Link to comment Share on other sites More sharing options...
FHannes Posted February 29, 2012 Share Posted February 29, 2012 Thank you, I'll fix that asap Quote Link to comment Share on other sites More sharing options...