tuned;
authorwenzelm
Wed, 27 Dec 2023 20:52:33 +0100
changeset 79377 c5282516e2d5
parent 79376 b275e3379024
child 79378 664d378c18bc
tuned;
src/Pure/thm_name.ML
--- a/src/Pure/thm_name.ML	Wed Dec 27 20:40:15 2023 +0100
+++ b/src/Pure/thm_name.ML	Wed Dec 27 20:52:33 2023 +0100
@@ -34,6 +34,6 @@
 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;
 
-fun expr name = split_list #>> burrow (list name) #> op ~~;
+fun expr name = burrow_fst (burrow (list name));
 
 end;