src/Pure/pattern.ML
changeset 1029 27808dabf4af
parent 678 6151b7f3b606
child 1435 aefcd255ed4a
--- a/src/Pure/pattern.ML	Tue Apr 11 12:01:11 1995 +0200
+++ b/src/Pure/pattern.ML	Wed Apr 12 13:53:34 1995 +0200
@@ -250,12 +250,11 @@
 			   handle Type.TYPE_MATCH => raise MATCH;
       fun mtch (tyinsts,insts) = fn
 	(Var(ixn,T), t)  =>
-	  if null (loose_bnos t)
-	  then case assoc(insts,ixn) of
+	  if loose_bvar(t,0) then raise MATCH
+	  else (case assoc(insts,ixn) of
 		  None => (typ_match (tyinsts, (T, fastype_of t)), 
 			   (ixn,t)::insts)
-		| Some u => if t aconv u then (tyinsts,insts) else raise MATCH
-	  else raise MATCH
+		| Some u => if t aconv u then (tyinsts,insts) else raise MATCH)
       | (Free (a,T), Free (b,U)) =>
 	  if  a=b  then (typ_match (tyinsts,(T,U)), insts)  else raise MATCH
       | (Const (a,T), Const (b,U))  =>