aboutsummaryrefslogtreecommitdiff
path: root/isa
diff options
context:
space:
mode:
authorMakarius Wenzel1999-07-02 22:11:56 +0000
committerMakarius Wenzel1999-07-02 22:11:56 +0000
commit9af3b0e0bca207591b8172bc859c529edeea32cf (patch)
tree8c067ea212057e76d5a1c244c8fbdd372f8ad558 /isa
parent6c80d2314ae6b6de4ec00b0e5c9b583ed928f06b (diff)
fixed some regexp via proof-anchor-regexp;
Diffstat (limited to 'isa')
-rw-r--r--isa/isa-syntax.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/isa/isa-syntax.el b/isa/isa-syntax.el
index 1bf2775f..90e4f2ec 100644
--- a/isa/isa-syntax.el
+++ b/isa/isa-syntax.el
@@ -117,7 +117,7 @@
"*Font-lock table for Isabelle terms.")
(defconst isa-save-command-regexp
- (concat "^" (proof-ids-to-regexp isa-keywords-save)))
+ (proof-anchor-regexp (proof-ids-to-regexp isa-keywords-save))))
;; CHECKED
(defconst isa-save-with-hole-regexp
@@ -125,7 +125,7 @@
"\\)\\s-+\"\\(" isa-id "\\)\"\\s-*;"))
(defcustom isa-goal-command-regexp
- (proof-ids-to-regexp isa-keywords-goal)
+ (proof-anchor-regexp (proof-ids-to-regexp isa-keywords-goal))
"Regular expression used to match a goal."
:type 'regexp
:group 'isabelle-config)