﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
1817	Tidy incorrectly formats an objects parenthesis	JamesBrooks	Jos	"When you run Tidy on functions on a function like this:

{{{
Func Test ( $ioParam, $ioIn, $ioOut )
   ; Blah
EndFunc
}}}

It will get converted to 

{{{
Func Test($ioParam, $ioIn, $ioOut)
   ; Blah
EndFunc
}}}

Notice the spaces between the parenthesis have now gone?

The same also applies for parenthesis in equations or when a function is called.

The only time the difference occurs is when using an objects property.

Tidy outputs this:
{{{
StringStripWS(.Fields(""Version"" ).Value, 8) 
}}}

When it should be:

{{{
StringStripWS(.Fields(""Version"").Value, 8) 
}}}

The space after the Version string is removed.

''Perhaps I am being too pedantic but it's an inconsistency which has bothered me greatly for some time.''
"	Bug	closed	Future Release	SciTE4AutoIt	3.3.6.1	None	Fixed	tidy, parenthesis	
