summaryrefslogtreecommitdiffstats
path: root/emacs/caml.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/caml.el')
-rw-r--r--emacs/caml.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/emacs/caml.el b/emacs/caml.el
index e0389ff4c..47595466d 100644
--- a/emacs/caml.el
+++ b/emacs/caml.el
@@ -1423,14 +1423,14 @@ matching nodes to determine KEYWORD's final indentation.")
(current-column))
((caml-in-comment-p)
(let ((closing (looking-at "\\*)"))
- (comment-mark (looking-at "\\*")))
+ (comment-mark (looking-at "\\*")))
(caml-backward-comment)
(looking-at comment-start-skip)
(+ (current-column)
(cond
- (closing 1)
- (comment-mark 1)
- (t caml-comment-indent)))))
+ (closing 1)
+ (comment-mark 1)
+ (t caml-comment-indent)))))
(t (let* ((leading (looking-at caml-leading-kwops-regexp))
(assoc-val (if leading (assoc (caml-match-string 0)
caml-leading-kwops-alist)))