src/Pure/Isar/proof_context.ML
changeset 22678 23963361278c
parent 22670 c803b2696ada
child 22701 4346f230283d
--- a/src/Pure/Isar/proof_context.ML	Sat Apr 14 17:36:03 2007 +0200
+++ b/src/Pure/Isar/proof_context.ML	Sat Apr 14 17:36:05 2007 +0200
@@ -460,7 +460,7 @@
   Consts.certify (pp ctxt) (tsig_of ctxt) (consts_of ctxt);
 
 fun reject_schematic (Var (xi, _)) =
-      error ("Unbound schematic variable: " ^ Syntax.string_of_vname xi)
+      error ("Unbound schematic variable: " ^ Term.string_of_vname xi)
   | reject_schematic (Abs (_, _, t)) = reject_schematic t
   | reject_schematic (t $ u) = (reject_schematic t; reject_schematic u)
   | reject_schematic _ = ();