aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--isar/isar-syntax.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/isar/isar-syntax.el b/isar/isar-syntax.el
index 35d8c8bc..7bd45aa9 100644
--- a/isar/isar-syntax.el
+++ b/isar/isar-syntax.el
@@ -121,7 +121,7 @@ This list is in the right format for proof-easy-config.")
isar-keywords-proof-script
isar-keywords-qed-global))
-(defconst isar-outline-heading-alist
+(defconst isar-keyword-level-alist
(append
(mapcar (lambda (w) (cons w 1))
(append isar-keywords-theory-heading
@@ -137,7 +137,7 @@ This list is in the right format for proof-easy-config.")
isar-keywords-proof-block)))
(defconst isar-keywords-outline
- (mapcar 'car isar-outline-heading-alist))
+ (mapcar 'car isar-keyword-level-alist))
(defconst isar-keywords-fume
(append isar-keywords-theory-begin
@@ -573,5 +573,7 @@ matches contents of quotes for quoted identifiers.")
(defconst isar-outline-heading-end-regexp "\n")
+(defconst isar-outline-heading-alist isar-keyword-level-alist)
+
(provide 'isar-syntax)