src/Pure/sign.ML
changeset 30364 577edc39b501
parent 30343 79f022df8527
child 30421 9498e99e58a6
--- a/src/Pure/sign.ML	Sun Mar 08 17:19:15 2009 +0100
+++ b/src/Pure/sign.ML	Sun Mar 08 17:26:14 2009 +0100
@@ -355,7 +355,7 @@
 fun check_vars (t $ u) = (check_vars t; check_vars u)
   | check_vars (Abs (_, _, t)) = check_vars t
   | check_vars (Free (x, _)) =
-      if NameSpace.is_qualified x then err ("Malformed variable: " ^ quote x) else ()
+      if Long_Name.is_qualified x then err ("Malformed variable: " ^ quote x) else ()
   | check_vars (Var (xi as (_, i), _)) =
       if i < 0 then err ("Malformed variable: " ^ quote (Term.string_of_vname xi)) else ()
   | check_vars _ = ();