src/HOL/Nominal/nominal_fresh_fun.ML
changeset 42364 8c674b3b8e44
parent 42361 23f352990944
child 42806 4b660cdab9b7
--- a/src/HOL/Nominal/nominal_fresh_fun.ML	Sat Apr 16 16:37:21 2011 +0200
+++ b/src/HOL/Nominal/nominal_fresh_fun.ML	Sat Apr 16 18:11:20 2011 +0200
@@ -55,7 +55,7 @@
    val thy = theory_of_thm thm;
 (* the parsing function returns a qualified name, we get back the base name *)
    val atom_basename = Long_Name.base_name atom_name;
-   val goal = List.nth(prems_of thm, i-1);
+   val goal = nth (prems_of thm) (i - 1);
    val ps = Logic.strip_params goal;
    val Ts = rev (map snd ps);
    fun is_of_fs_name T = Sign.of_sort thy (T, [Sign.intern_class thy ("fs_"^atom_basename)]);
@@ -97,7 +97,7 @@
 
 fun generate_fresh_fun_tac i thm =
   let
-    val goal = List.nth(prems_of thm, i-1);
+    val goal = nth (prems_of thm) (i - 1);
     val atom_name_opt = get_inner_fresh_fun goal;
   in
   case atom_name_opt of