eliminated some unreferenced identifiers;
authorwenzelm
Thu, 22 Jul 2010 14:59:27 +0200
changeset 37906 4195727a1f6c
parent 37905 0cf799737f5f
child 37907 f18c4bc8b028
eliminated some unreferenced identifiers;
src/Pure/Concurrent/single_assignment.ML
src/Pure/Isar/toplevel.ML
--- a/src/Pure/Concurrent/single_assignment.ML	Thu Jul 22 14:01:43 2010 +0200
+++ b/src/Pure/Concurrent/single_assignment.ML	Thu Jul 22 14:59:27 2010 +0200
@@ -31,7 +31,7 @@
 
 fun peek (Var {var, ...}) = SingleAssignment.savalue var;
 
-fun await (v as Var {name, lock, cond, var}) =
+fun await (v as Var {name, lock, cond, ...}) =
   Simple_Thread.synchronized name lock (fn () =>
     let
       fun wait () =
--- a/src/Pure/Isar/toplevel.ML	Thu Jul 22 14:01:43 2010 +0200
+++ b/src/Pure/Isar/toplevel.ML	Thu Jul 22 14:59:27 2010 +0200
@@ -629,7 +629,7 @@
 
 (* managed execution *)
 
-fun run_command thy_name (tr as Transition {print, ...}) st =
+fun run_command thy_name tr st =
   (case
       (case init_of tr of
         SOME name => Exn.capture (fn () => Thy_Load.check_name thy_name name) ()