diff options
author | Tom Tromey <tromey@adacore.com> | 2024-06-03 09:37:27 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2024-11-11 07:44:27 -0700 |
commit | fc55e99ad740b285f655c3a2a6035850bf2e3220 (patch) | |
tree | 2e6cddce9601123dc74ba11c7f35fd9e66520b10 /gdb/debuginfod-support.c | |
parent | bf0a21777530ff364a7f30a79e1fd3616e5a6c7e (diff) | |
download | binutils-fc55e99ad740b285f655c3a2a6035850bf2e3220.zip binutils-fc55e99ad740b285f655c3a2a6035850bf2e3220.tar.gz binutils-fc55e99ad740b285f655c3a2a6035850bf2e3220.tar.bz2 |
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>
Diffstat (limited to 'gdb/debuginfod-support.c')
-rw-r--r-- | gdb/debuginfod-support.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gdb/debuginfod-support.c b/gdb/debuginfod-support.c index 9460ae1..2ae7228 100644 --- a/gdb/debuginfod-support.c +++ b/gdb/debuginfod-support.c @@ -624,9 +624,9 @@ When set to \"ask\", prompt whether to enable or disable debuginfod." ), add_setshow_string_noescape_cmd ("urls", class_run, _("\ Set the list of debuginfod server URLs."), _("\ Show the list of debuginfod server URLs."), _("\ -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."), +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."), set_debuginfod_urls, get_debuginfod_urls, show_debuginfod_urls, @@ -657,9 +657,9 @@ query.\nTo disable, set to zero. Verbose output is displayed by default."), add_setshow_boolean_cmd ("download-sections", class_maintenance, _("\ Set whether debuginfod may download individual ELF/DWARF sections."), _("\ Show whether debuginfod may download individual ELF/DWARF sections."), _("\ -When enabled, debuginfod may attempt to download individual ELF/DWARF \ -sections from debug info files.\nIf disabled, only whole debug info files \ -may be downloaded."), +When enabled, debuginfod may attempt to download individual ELF/DWARF\n\ +sections from debug info files.\n\ +If disabled, only whole debug info files may be downloaded."), maint_set_debuginfod_download_sections, maint_get_debuginfod_download_sections, nullptr, |