Add FIXME note re FAIL (is it fixed yet?)
authoraspinall
Fri, 07 May 2004 13:42:08 +0200
changeset 1471438ff9c8a7de0
parent 14713 6d203f6f0e8d
child 14715 9f75d9c1d677
Add FIXME note re FAIL (is it fixed yet?)
src/Pure/General/xml.ML
     1.1 --- a/src/Pure/General/xml.ML	Fri May 07 13:40:24 2004 +0200
     1.2 +++ b/src/Pure/General/xml.ML	Fri May 07 13:42:08 2004 +0200
     1.3 @@ -57,7 +57,7 @@
     1.4      Elem of string * (string * string) list * tree list
     1.5    | Text of string;
     1.6  
     1.7 -fun attribute (a, x) = a ^ " = " ^ "\"" (text x) "\"";
     1.8 +fun attribute (a, x) = a ^ " = \"" ^ (text x) ^ "\"";
     1.9  
    1.10  fun element name atts cs =
    1.11    let val elem = space_implode " " (name :: map attribute atts) in