internal thm numbering with ":" instead of "_";
authorwenzelm
Fri, 28 Sep 2001 19:23:07 +0200
changeset 11631 b325c05709d3
parent 11630 b95f527482fc
child 11632 6fc8de600f58
internal thm numbering with ":" instead of "_";
src/Pure/pure_thy.ML
--- a/src/Pure/pure_thy.ML	Fri Sep 28 19:22:40 2001 +0200
+++ b/src/Pure/pure_thy.ML	Fri Sep 28 19:23:07 2001 +0200
@@ -224,7 +224,7 @@
 (* naming *)
 
 fun gen_names len name =
-  map (fn i => name ^ "_" ^ string_of_int i) (1 upto len);
+  map (fn i => name ^ ":" ^ string_of_int i) (1 upto len);
 
 fun name_single name x = [(name, x)];
 fun name_multi name xs = gen_names (length xs) name ~~ xs;