src/Pure/Isar/outer_syntax.scala
changeset 60692 896704918a1f
parent 60215 5fb4990dfc73
child 60694 b3fa4a8cdb5f
--- a/src/Pure/Isar/outer_syntax.scala	Wed Jul 08 11:50:43 2015 +0200
+++ b/src/Pure/Isar/outer_syntax.scala	Wed Jul 08 12:09:44 2015 +0200
@@ -164,16 +164,11 @@
       ((structure.span_depth, structure.after_span_depth) /: tokens) {
         case ((x, y), tok) =>
           if (tok.is_command) {
-            if (tok.is_command_kind(keywords, Keyword.theory_goal))
-              (2, 1)
-            else if (tok.is_command_kind(keywords, Keyword.theory))
-              (1, 0)
-            else if (tok.is_command_kind(keywords, Keyword.proof_goal) || tok.is_begin_block)
-              (y + 2, y + 1)
-            else if (tok.is_command_kind(keywords, Keyword.qed) || tok.is_end_block)
-              (y + 1, y - 1)
-            else if (tok.is_command_kind(keywords, Keyword.qed_global))
-              (1, 0)
+            if (tok.is_command_kind(keywords, Keyword.theory_goal)) (2, 1)
+            else if (tok.is_command_kind(keywords, Keyword.theory)) (1, 0)
+            else if (tok.is_command_kind(keywords, Keyword.proof_open)) (y + 2, y + 1)
+            else if (tok.is_command_kind(keywords, Keyword.proof_close)) (y + 1, y - 1)
+            else if (tok.is_command_kind(keywords, Keyword.qed_global)) (1, 0)
             else (x, y)
           }
           else (x, y)