]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/.dir-locals.el
Fix regression on aarch64-linux gdbserver
[thirdparty/binutils-gdb.git] / gdb / .dir-locals.el
CommitLineData
3ad2ec6f 1;; Emacs settings.
1d506c26 2;; Copyright (C) 2012-2024 Free Software Foundation, Inc.
3ad2ec6f
TT
3
4;; This program is free software; you can redistribute it and/or modify
5;; it under the terms of the GNU General Public License as published by
6;; the Free Software Foundation; either version 3 of the License, or
7;; (at your option) any later version.
8
9;; This program is distributed in the hope that it will be useful,
10;; but WITHOUT ANY WARRANTY; without even the implied warranty of
11;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12;; GNU General Public License for more details.
13
14;; You should have received a copy of the GNU General Public License
15;; along with this program. If not, see <http://www.gnu.org/licenses/>.
16
20ea4a60
AB
17;; There are three copies of this file, one in each of gdb/,
18;; gdbserver/, and gdbsupport/. If you edit any one of these then
19;; please replicate the changes in the other two copies.
20
3ad2ec6f
TT
21(
22 (tcl-mode . ((tcl-indent-level . 4)
23 (tcl-continued-indent-level . 4)
24 (indent-tabs-mode . t)))
c1c0a7e1
AB
25 (nil . ((bug-reference-url-format . "http://sourceware.org/bugzilla/show_bug.cgi?id=%s")
26 (sentence-end-double-space . t)))
3ad2ec6f 27 (c-mode . ((c-file-style . "GNU")
ff718840
AT
28 (mode . c++)
29 (indent-tabs-mode . t)
30 (tab-width . 8)
31 (c-basic-offset . 2)
c1c0a7e1 32 (eval . (c-set-offset 'brace-list-open 0))
ff718840
AT
33 (eval . (c-set-offset 'innamespace 0))
34 ))
25c54127 35 (c++-mode . ((eval . (when (fboundp 'c-toggle-comment-style)
d9c859da
AB
36 (c-toggle-comment-style 1)))
37 (indent-tabs-mode . t)
38 (tab-width . 8)
39 (c-file-style . "GNU")
40 (c-basic-offset . 2)
c1c0a7e1 41 (eval . (c-set-offset 'brace-list-open 0))
d9c859da
AB
42 (eval . (c-set-offset 'innamespace 0))
43 ))
3ad2ec6f 44)