summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorGravatar Tom Willemse2024-04-04 15:01:14 -0700
committerGravatar Tom Willemse2024-04-04 15:01:14 -0700
commita300a31262d37c68704e11f9b92f6eb5c0253ff0 (patch)
treed2e0c6aa5c6cde8c7f34621ddf3d203d47d0be23
parent6e9d96f58eddd69f62f7fd443d9b9753e16e0e96 (diff)
parent5a39466285a85077f19f680071546b14e3a545e4 (diff)
downloadnginx-mode-a300a31262d37c68704e11f9b92f6eb5c0253ff0.tar.gz
nginx-mode-a300a31262d37c68704e11f9b92f6eb5c0253ff0.zip
Merge branch 'indent-closing-brace-with-comment-fix' into oni
-rw-r--r--nginx-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/nginx-mode.el b/nginx-mode.el
index b01367c..c612719 100644
--- a/nginx-mode.el
+++ b/nginx-mode.el
@@ -112,7 +112,7 @@ of the closing brace of a block."
(block-indent (nginx-block-indent))
cur-indent)
(cond
- ((and (looking-at "^\\s-*}\\s-*$") block-indent)
+ ((and (looking-at "^\\s-*}") block-indent)
;; This line contains a closing brace and we're at the inner
;; block, so we should indent it matching the indentation of
;; the opening brace of the block.