aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq/coq-indent.el
diff options
context:
space:
mode:
authorGravatar Pierre Courtieu <courtieu@lri.fr>2015-01-27 09:27:09 +0000
committerGravatar Pierre Courtieu <courtieu@lri.fr>2015-01-27 09:27:09 +0000
commit2af210aeab374b6fcd55db2a155d897a17face0b (patch)
treed39af26f307278d99653ea0b645017a3dad2d6fb /coq/coq-indent.el
parent8846ae205897eb04673f093d7e1e13d9da7af6ae (diff)
Fixed a bug in script navigation. Updated CHANGE
Diffstat (limited to 'coq/coq-indent.el')
-rw-r--r--coq/coq-indent.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/coq/coq-indent.el b/coq/coq-indent.el
index da73f808..93feebca 100644
--- a/coq/coq-indent.el
+++ b/coq/coq-indent.el
@@ -391,7 +391,9 @@ and return nil."
The point is put exactly after the end of previous command, or at the (point-min if
there is no previous command)."
(coq-script-parse-cmdend-backward)
- (if (proof-looking-at "\\.\\s-\\|{\\|}") (forward-char 1)) ; else = no match found
+ (when
+ (proof-looking-at "\\.\\s-\\|{\\|}\\|\\++\\|\\*+\\|-+")
+ (forward-char (- (match-end 0) (match-beginning 0)))) ; else = no match found
(point))