src/Pure/Isar/auto_bind.ML
changeset 60401 16cf5090d3a6
parent 59970 e9f73d87d904
child 60408 1fd46ced2fa8
--- a/src/Pure/Isar/auto_bind.ML	Mon Jun 08 22:04:19 2015 +0200
+++ b/src/Pure/Isar/auto_bind.ML	Tue Jun 09 11:51:05 2015 +0200
@@ -11,7 +11,7 @@
   val assmsN: string
   val goal: Proof.context -> term list -> (indexname * term option) list
   val facts: Proof.context -> term list -> (indexname * term option) list
-  val no_facts: (indexname * term option) list
+  val no_facts: indexname list
 end;
 
 structure Auto_Bind: AUTO_BIND =
@@ -47,6 +47,6 @@
       let val prop = List.last props
       in [(Syntax_Ext.dddot_indexname, get_arg ctxt prop)] @ statement_binds ctxt thisN prop end;
 
-val no_facts = [(Syntax_Ext.dddot_indexname, NONE), ((thisN, 0), NONE)];
+val no_facts = [Syntax_Ext.dddot_indexname, (thisN, 0)];
 
 end;