From 66004cbbdf3858f12482990af7b06291e676d262 Mon Sep 17 00:00:00 2001 From: Pierre Courtieu Date: Thu, 11 Mar 2004 12:09:03 +0000 Subject: bug fixes on indenting and command-end-regexp. --- coq/coq-indent.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'coq/coq-indent.el') diff --git a/coq/coq-indent.el b/coq/coq-indent.el index ab8f533d..7505b5ec 100644 --- a/coq/coq-indent.el +++ b/coq/coq-indent.el @@ -386,7 +386,9 @@ ; or from the command start (if we are in an Inductive type) ((proof-looking-at-safe coq-indent-pattern-regexp) (save-excursion (coq-find-unclosed 1 real-start) - (+ (current-column) proof-indent))) + (if (proof-looking-at-safe "\\s(") + (+ (current-indentation) proof-indent) + (+ (current-column) proof-indent)))) ; if we find a "then" we indent from the first unclosed if ; or from the command start (should not happen) -- cgit v1.2.3