summaryrefslogtreecommitdiff
path: root/tools/clang-format/clang-format.el
diff options
context:
space:
mode:
authorDaniel Jasper <djasper@google.com>2013-05-07 10:04:47 +0000
committerDaniel Jasper <djasper@google.com>2013-05-07 10:04:47 +0000
commit8c39a1d1eabb42d8f35cada47ad9d4d87f98cb1d (patch)
treec14598f7149f9ede8e6004af0a9b266ab3a0d0c9 /tools/clang-format/clang-format.el
parent8ee617e56492fc1c68f6dc115b20ead9c04c2fe1 (diff)
downloadclang-8c39a1d1eabb42d8f35cada47ad9d4d87f98cb1d.tar.gz
clang-8c39a1d1eabb42d8f35cada47ad9d4d87f98cb1d.tar.bz2
clang-8c39a1d1eabb42d8f35cada47ad9d4d87f98cb1d.tar.xz
Further fix to clang-format emacs integration.
This is just a slight improvement for the fix in r181299, which fixes formatting the very last line of a file. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@181303 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/clang-format/clang-format.el')
-rw-r--r--tools/clang-format/clang-format.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/clang-format/clang-format.el b/tools/clang-format/clang-format.el
index 2c5546b241..b76eb41d94 100644
--- a/tools/clang-format/clang-format.el
+++ b/tools/clang-format/clang-format.el
@@ -20,7 +20,7 @@
(setq beg (region-beginning)
end (region-end))
(setq beg (min (line-beginning-position) (1- (point-max)))
- end (min (line-end-position) (1- (point-max)))))
+ end (line-end-position)))
(call-process-region (point-min) (point-max) binary t t nil
"-offset" (number-to-string (1- beg))
"-length" (number-to-string (- end beg))