0
0
mirror of https://github.com/OpenVPN/openvpn3.git synced 2024-09-19 19:52:15 +02:00

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>
This commit is contained in:
Mark Deric 2023-06-13 06:11:46 -07:00 committed by David Sommerseth
parent 0f5970a530
commit afd3fce36d
No known key found for this signature in database
GPG Key ID: 86CF944C9671FDF2

View File

@ -1,10 +1,10 @@
; 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++-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 . +))
)
(template-args-cont . +)))))