id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	os	architecture	failure	difficulty	testcase	blockedby	blocking	related
4015	:browse prints record selectors too many times	simonpj		"Kazu Yamamoto points out that this module
{{{
module Test (R(..)) where
data R = R { x :: Char, y :: Int, z :: Float }
}}}
when loaded into GHCi 6.12, and "":browse"", displays this (yes, all four lines):
{{{
data R = R {x :: Char, y :: Int, z :: Float}
data R = R {x :: Char, ...}
data R = R {..., y :: Int, ...}
data R = R {..., z :: Float}
}}}
The problem is that GHCi is printing a line for each record selector individually.  

"	bug	closed	normal	6.12.3	Compiler	6.12.2	fixed		kazu@…	Unknown/Multiple	Unknown/Multiple	None/Unknown		ghci/scripts/T4015			
