__color__,__group__,ticket,summary,component,version,type,owner,status,created,_changetime,_description,_reporter
3,,2,Handling of comments in the output file may not work,f2cl,,defect,somebody,new,2011-06-11T11:48:35-0700,2011-06-11T11:48:35-0700,"If f2cl is instructed to save comments to the output (converted) Lisp file, the result may be an invalid form in the Lisp file.

Quotes inside the (Fortran) comment can confuse f2cl when writing out the comment for Lisp.",rtoy
3,,3,PARAMETER variables may be arranged incorrectly,f2cl,,defect,somebody,new,2011-06-11T11:50:50-0700,2011-06-11T11:50:50-0700,"{{{PARAMETER}}} variables may not be arranged correctly.  This may require 
some hand-tweaking of the output lisp file.  This manifests itself
if the value of a {{{PARAMETER}}} variable is computed from the value(s)
of other {{{PARAMETER}}} variables.

The order is not important in Fortran, but when converted, the order is important in Lisp.  Sometimes f2cl gets it wrong.  Reordering the {{{PARAMETER}}} variables in Fortran will usually make it work for Lisp.",rtoy
3,,4,EQUIVALENCE statements are not handled,f2cl,,defect,somebody,new,2011-06-11T11:54:00-0700,2011-06-11T11:54:00-0700,"In general Fortran {{{EQUIVALENCE}}} statements aren't handled at all by f2cl, but there are cases where f2cl should be able to convert to Lisp.

If the EQUIVALENCE just aliases a bunch of variables and arrays together and they are all of the same basic type, f2cl should be able to create a giant array and map the variables and arrays at the appropriate locations in the array.  F2cl cannot do that currently, except in some very simple cases.",rtoy
4,,1,Hollerith strings aren't handled correctly,f2cl,,defect,somebody,new,2011-06-11T11:46:42-0700,2011-06-11T11:46:42-0700,"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'
}}}

",rtoy
