src/Pure/thm_name.ML
changeset 79371 a2fbac74fba7
parent 79358 b191339a014c
child 79372 d02c8adce4e6
--- a/src/Pure/thm_name.ML	Wed Dec 27 15:34:47 2023 +0100
+++ b/src/Pure/thm_name.ML	Wed Dec 27 15:50:17 2023 +0100
@@ -13,7 +13,7 @@
   val ord: T ord
   val print: T -> string
   val flatten: T * Position.T -> string * Position.T
-  val make_list: string * Position.T -> 'a list -> ((T * Position.T) * 'a) list
+  val list: string * Position.T -> 'a list -> ((T * Position.T) * 'a) list
 end;
 
 structure Thm_Name: THM_NAME =
@@ -30,7 +30,7 @@
   if name = "" orelse index = 0 then (name, pos)
   else (name ^ "_" ^ string_of_int index, pos);
 
-fun make_list (name, pos) [thm] = [(((name, 0), pos), thm)]
-  | make_list (name, pos) thms = map_index (fn (i, thm) => (((name, i + 1), pos), thm)) thms;
+fun list (name, pos: Position.T) [thm] = [(((name, 0): T, pos), thm)]
+  | list (name, pos) thms = map_index (fn (i, thm) => (((name, i + 1), pos), thm)) thms;
 
 end;