--- a/src/Pure/Isar/proof.ML Mon Feb 07 18:40:27 2000 +0100
+++ b/src/Pure/Isar/proof.ML Mon Feb 07 18:40:40 2000 +0100
@@ -31,6 +31,7 @@
val reset_facts: state -> state
val assert_forward: state -> state
val assert_backward: state -> state
+ val assert_no_chain: state -> state
val enter_forward: state -> state
val show_hyps: bool ref
val pretty_thm: thm -> Pretty.T
@@ -269,6 +270,7 @@
val assert_forward = assert_mode (equal Forward);
val assert_forward_or_chain = assert_mode (equal Forward orf equal ForwardChain);
val assert_backward = assert_mode (equal Backward);
+val assert_no_chain = assert_mode (not_equal ForwardChain);
(* blocks *)