aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq/coq-smie.el
diff options
context:
space:
mode:
Diffstat (limited to 'coq/coq-smie.el')
-rw-r--r--coq/coq-smie.el17
1 files changed, 9 insertions, 8 deletions
diff --git a/coq/coq-smie.el b/coq/coq-smie.el
index 378febea..6f520280 100644
--- a/coq/coq-smie.el
+++ b/coq/coq-smie.el
@@ -966,14 +966,15 @@ KIND is the situation and TOKEN is the thing w.r.t which the rule applies."
;; now ( tac3 ; <- neither here
;; tac5) ;
;; ]
- ((and (equal token "; tactic")
- coq-indent-semicolon-tactical
- (not (coq-smie-is-ltacdef))
- (not (coq-smie-is-inside-parenthesized-tactic)))
- (if (or (not (smie-rule-parent-p "; tactic"))
- (and smie--parent
- (coq-smie--same-line-as-parent
- (nth 1 smie--parent) (point))))
+ ((equal token "; tactic")
+ (if (and (smie-rule-hanging-p)
+ coq-indent-semicolon-tactical
+ (not (coq-smie-is-ltacdef))
+ (not (coq-smie-is-inside-parenthesized-tactic))
+ (or (not (smie-rule-parent-p "; tactic"))
+ (and smie--parent
+ (coq-smie--same-line-as-parent
+ (nth 1 smie--parent) (point)))))
coq-indent-semicolon-tactical
nil))