aboutsummaryrefslogtreecommitdiff
path: root/gdbserver/ChangeLog
diff options
context:
space:
mode:
authorAndrew Burgess <andrew.burgess@embecosm.com>2021-05-17 13:09:22 +0100
committerAndrew Burgess <andrew.burgess@embecosm.com>2021-05-17 20:47:46 +0100
commitc1c0a7e1f39fda9f95bb94ecc5f39b189d69a76c (patch)
tree7f6cb0a8fc843a90bb52588fa3316c6e99f34822 /gdbserver/ChangeLog
parent9e541c7918c184aa226c1544159e37b6387ef205 (diff)
downloadgdb-c1c0a7e1f39fda9f95bb94ecc5f39b189d69a76c.zip
gdb-c1c0a7e1f39fda9f95bb94ecc5f39b189d69a76c.tar.gz
gdb-c1c0a7e1f39fda9f95bb94ecc5f39b189d69a76c.tar.bz2
gdb: additional settings for emacs in .dir-locals.el
Two additional settings for developers who use emacs: 1. Set brace-list-open to 0 for C and C++ modes, this ensures we format things like: enum blah { .... }; Instead of the default for the emacs GNU style: enum blah { ... }; The former seems to be the GDB style. 2. Set sentence-end-double-space to t. This is actually the default value for this setting, but if anyone has customised this to nil in general, then forcing this back to t for GDB files will give a better behaviour for the paragraph filling. gdb/ChangeLog: * .dir-locals.el: Set sentence-end-double-space for all modes, and set brace-list-open to 0 for C and C++ modes. gdbserver/ChangeLog: * .dir-locals.el: Set sentence-end-double-space for all modes, and set brace-list-open to 0 for C and C++ modes. gdbsupport/ChangeLog: * .dir-locals.el: Set sentence-end-double-space for all modes, and set brace-list-open to 0 for C and C++ modes.
Diffstat (limited to 'gdbserver/ChangeLog')
-rw-r--r--gdbserver/ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/gdbserver/ChangeLog b/gdbserver/ChangeLog
index 7e7e3f2..79c60b0 100644
--- a/gdbserver/ChangeLog
+++ b/gdbserver/ChangeLog
@@ -1,3 +1,8 @@
+2021-05-17 Andrew Burgess <andrew.burgess@embecosm.com>
+
+ * .dir-locals.el: Set sentence-end-double-space for all modes, and
+ set brace-list-open to 0 for C and C++ modes.
+
2021-05-08 Simon Marchi <simon.marchi@polymtl.ca>
* linux-low.cc (linux_process_target::wait_for_event_filtered):