]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit
Wrap help strings at 80 columns
authorTom Tromey <tromey@adacore.com>
Mon, 3 Jun 2024 15:37:27 +0000 (09:37 -0600)
committerTom Tromey <tromey@adacore.com>
Mon, 11 Nov 2024 14:44:27 +0000 (07:44 -0700)
commitfc55e99ad740b285f655c3a2a6035850bf2e3220
tree2e6cddce9601123dc74ba11c7f35fd9e66520b10
parentbf0a21777530ff364a7f30a79e1fd3616e5a6c7e
Wrap help strings at 80 columns

This patch ensures that all ordinary help strings are wrapped at 80
columns.  For the most part this consists of changing code like this
(note the embedded \n and the trailing backslash without a newline):

-Manage the space-separated list of debuginfod server URLs that GDB will query \
-when missing debuginfo, executables or source files.\nThe default value is \
-copied from the DEBUGINFOD_URLS environment variable."),

... to end each line with \n\, like:

+Manage the space-separated list of debuginfod server URLs that GDB will\n\
+query when missing debuginfo, executables or source files.\n\
+The default value is copied from the DEBUGINFOD_URLS environment variable."),

Approved-By: Eli Zaretskii <eliz@gnu.org>
21 files changed:
gdb/ada-lang.c
gdb/ax-gdb.c
gdb/cli/cli-cmds.c
gdb/cli/cli-utils.c
gdb/debuginfod-support.c
gdb/dwarf2/loc.c
gdb/elfread.c
gdb/frame-unwind.c
gdb/infcmd.c
gdb/memattr.c
gdb/psymtab.c
gdb/record-btrace.c
gdb/record-full.c
gdb/record.c
gdb/regcache-dump.c
gdb/stap-probe.c
gdb/symfile.c
gdb/symmisc.c
gdb/symtab.c
gdb/typeprint.c
gdb/xtensa-tdep.c