tuned;
authorwenzelm
Thu, 24 Feb 2000 16:04:25 +0100
changeset 8296 c72122020380
parent 8295 ed9fc488b980
child 8297 f5fdb69ad4d2
tuned;
src/Pure/thm.ML
--- a/src/Pure/thm.ML	Thu Feb 24 16:01:34 2000 +0100
+++ b/src/Pure/thm.ML	Thu Feb 24 16:04:25 2000 +0100
@@ -646,13 +646,12 @@
   If this check must be made, recalculate maxidx in hope of preventing its
   recurrence.*)
 fun nodup_vars (thm as Thm{sign_ref, der, maxidx, shyps, hyps, prop}) s =
-  (Sign.nodup_vars prop; 
-   Thm {sign_ref = sign_ref, 
+  Thm {sign_ref = sign_ref, 
          der = der,     
          maxidx = maxidx_of_term prop,
          shyps = shyps, 
          hyps = hyps, 
-         prop = prop})
+         prop = Sign.nodup_vars prop}
   handle TYPE(msg,Ts,ts) => raise TYPE(s^": "^msg,Ts,ts);