summaryrefslogtreecommitdiff
path: root/lisp/cpp.el
diff options
context:
space:
mode:
authorMatthew Kosarek <matt.kosarek@canonical.com>2024-05-27 08:24:50 -0400
committerMatthew Kosarek <matt.kosarek@canonical.com>2024-05-27 08:24:50 -0400
commitcc6cffcfa6800ef362ee44b694160728abe977fd (patch)
tree9858bb24a7655377982369e8707c20586a8fa8f9 /lisp/cpp.el
parentf7447ad9ae7bc7bbccd7acbe8eb31478f1958fe0 (diff)
bugfix: cpp had incorrect formatting
Diffstat (limited to 'lisp/cpp.el')
-rw-r--r--lisp/cpp.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/cpp.el b/lisp/cpp.el
index eb7660e..77a52d8 100644
--- a/lisp/cpp.el
+++ b/lisp/cpp.el
@@ -12,10 +12,11 @@
(c-set-offset 'substatement-open 0)
(c-set-offset 'arglist-intro '+)
(c-set-offset 'arglist-cont-non-empty '+)
- (c-set-offset 'argslist-close '+)
+ (c-set-offset 'arglist-close '+)
(c-set-offset 'statement-cont 0)
)
+(setup-c)
(add-hook 'c-mode-common-hook 'setup-c)
(defun mk/cpp/generate-compile-commands-cmake()