String.concatWith (not available in PolyML) replaced by space_implode
authorwebertj
Thu, 31 Aug 2006 14:36:48 +0200
changeset 20446 7e616709bca2
parent 20445 b222d9939e00
child 20447 5b75f1c4d7d6
String.concatWith (not available in PolyML) replaced by space_implode
src/HOL/Tools/res_atp.ML
--- a/src/HOL/Tools/res_atp.ML	Thu Aug 31 10:20:22 2006 +0200
+++ b/src/HOL/Tools/res_atp.ML	Thu Aug 31 14:36:48 2006 +0200
@@ -480,7 +480,7 @@
   case rev (String.fields (fn c => c = #"_") s) of
       last::rest => 
           if all_numeric last 
-          then [s, String.concatWith "_" (rev rest)]
+          then [s, space_implode "_" (rev rest)]
           else [s]
     | [] => [s];