0
0
mirror of https://github.com/OpenVPN/openvpn3.git synced 2024-09-19 11:42:15 +02:00
openvpn3/.dir-locals.el-example
Mark Deric afd3fce36d
Fix .dir-locals.el-example so that it works
Fixed for syntax differences required between .emacs and
.dir-locals.el.  The previous version of this file may have worked in
.emacs context; I did not check that.  But it certainly did _not_ work
in .dir-locals.el context; the new file does work.

Signed-off-by: Mark Deric <jmark@openvpn.net>
2023-06-16 18:48:22 +02:00

11 lines
384 B
Plaintext

; Adapted from https://www.emacswiki.org/emacs/IndentingC
; fixed for syntax differences required between .emacs and .dir-locals.el
((c++-mode . ((c-file-style . "stroustrup")
(c-file-offsets
(innamespace . -)
(inline-open . 0)
(inher-cont . c-lineup-multi-inher)
(arglist-cont-nonempty . c-lineup-arglist)
(template-args-cont . +)))))