(un)folded: removed '(raw)' option;
authorwenzelm
Tue, 31 Jan 2006 18:19:27 +0100
changeset 18872 020044cf1510
parent 18871 ca48320f6619
child 18873 11c92ec2c29c
(un)folded: removed '(raw)' option;
src/Pure/Isar/attrib.ML
--- a/src/Pure/Isar/attrib.ML	Tue Jan 31 18:19:26 2006 +0100
+++ b/src/Pure/Isar/attrib.ML	Tue Jan 31 18:19:27 2006 +0100
@@ -397,8 +397,8 @@
 (* unfold / fold definitions *)
 
 fun unfolded_syntax rule =
-  syntax ((Args.mode "raw" >> not) -- thmss >>
-    (fn (b, ths) => Thm.rule_attribute (fn context => rule (Context.proof_of context) b ths)));
+  syntax (thmss >>
+    (fn ths => Thm.rule_attribute (fn context => rule (Context.proof_of context) ths)));
 
 val unfolded = unfolded_syntax LocalDefs.unfold;
 val folded = unfolded_syntax LocalDefs.fold;