aboutsummaryrefslogtreecommitdiffhomepage
path: root/isar
diff options
context:
space:
mode:
authorGravatar Makarius Wenzel <makarius@sketis.net>1999-11-10 14:20:00 +0000
committerGravatar Makarius Wenzel <makarius@sketis.net>1999-11-10 14:20:00 +0000
commit8423337a5cf175abcb3f9cca77ed49b3b79e1caa (patch)
tree726f90aaaab92ca2396b72ffa87a5fc1ae33bb00 /isar
parent24c86f6ce52b633973e12457c6ec8c7133209dc7 (diff)
fixed indentation bug: use proof-looking-at (proof-case-fold-search);
Diffstat (limited to 'isar')
-rw-r--r--isar/isar.el14
1 files changed, 7 insertions, 7 deletions
diff --git a/isar/isar.el b/isar/isar.el
index a7bc567e..58ecd775 100644
--- a/isar/isar.el
+++ b/isar/isar.el
@@ -122,15 +122,15 @@
(current-indentation))))
(if (and (eq (car (car stack)) ?p)
(save-excursion (move-to-column (current-indentation))
- (looking-at isar-indent-enclose-regexp)))
+ (proof-looking-at isar-indent-enclose-regexp)))
col
(+ isabelle-isar-indent col))))))
(defun isar-parse-indent (c stack)
(cond
- ((looking-at isar-indent-open-regexp)
+ ((proof-looking-at isar-indent-open-regexp)
(cons (list ?p (point)) stack))
- ((and (looking-at isar-indent-close-regexp) (eq (car (car stack)) ?p))
+ ((and (proof-looking-at isar-indent-close-regexp) (eq (car (car stack)) ?p))
(cdr stack))
(t stack)))
@@ -154,18 +154,18 @@
(setq forward-amount 1)
(cond
;; comments
- ((looking-at cmt-start-regexp)
+ ((proof-looking-at cmt-start-regexp)
(setq forward-amount (length (match-string 0)))
(incf cmt-level))
- ((looking-at cmt-end-regexp)
+ ((proof-looking-at cmt-end-regexp)
(setq forward-amount (length (match-string 0)))
(decf cmt-level))
((> cmt-level 0))
;; white space
- ((looking-at white-space-regexp)
+ ((proof-looking-at white-space-regexp)
(setq forward-amount (length (match-string 0))))
;; theory header
- ((looking-at header-regexp)
+ ((proof-looking-at header-regexp)
(setq found-header t)
(setq cont nil))
;; bad stuff