id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1	Hollerith strings aren't handled correctly	rtoy	somebody	"Hollerith strings aren't parsed correctly by f2cl.

If you don't know what they are, then this isn't a problem.  If you do, then you should convert the Hollerith string into a standard Fortran string.  So
{{{
   character*5 s
   s = 4H1234
}}}
should be converted by hand to
{{{
   character*5 s
   s = '1234'
}}}

"	defect	new	minor		f2cl				
