aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq/coq-indent.el
diff options
context:
space:
mode:
authorGravatar Pierre Courtieu <courtieu@lri.fr>2006-08-24 12:45:50 +0000
committerGravatar Pierre Courtieu <courtieu@lri.fr>2006-08-24 12:45:50 +0000
commitd84ab86cf1f2f485e87351612f24f9ab7a7560dc (patch)
tree1f46ff30abdc4b8e07486460e7e7b3eac058e631 /coq/coq-indent.el
parent584c3a565264c498cb5fe1fed173f1920af56fc0 (diff)
fixing a bug introduced lately (coq-save-command-p *needs* two args
beacause proof-save-command-p needs is so defined).
Diffstat (limited to 'coq/coq-indent.el')
-rw-r--r--coq/coq-indent.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/coq/coq-indent.el b/coq/coq-indent.el
index 5a21cc2d..33656248 100644
--- a/coq/coq-indent.el
+++ b/coq/coq-indent.el
@@ -416,7 +416,7 @@ is moved at the end of the match if found, at LIM otherwise."
;; we are at an end command -> one ident left
;; FIX: we should count the number of closing item on the line
- ((coq-save-command-p (or (coq-command-at-point) ""))
+ ((coq-save-command-p nil (or (coq-command-at-point) ""))
(- proof-indent))
@@ -426,7 +426,7 @@ is moved at the end of the match if found, at LIM otherwise."
(or (and;;"Proof ..." is a proof start (but not really a goal command)
;; unless followed by a term (catch by coq-save-command-p above
(proof-looking-at-safe "\\<Proof\\>")
- (not (coq-save-command-p (coq-command-at-point))))
+ (not (coq-save-command-p nil (coq-command-at-point))))
(coq-indent-goal-command-p (coq-command-at-point))
))
proof-indent)