From fc55e99ad740b285f655c3a2a6035850bf2e3220 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Mon, 3 Jun 2024 09:37:27 -0600 Subject: 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 --- gdb/ada-lang.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'gdb/ada-lang.c') diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c index dc1b841..6c0621f 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -13957,11 +13957,11 @@ this option to \"off\" unless necessary."), add_setshow_boolean_cmd ("print-signatures", class_vars, &print_signatures, _("\ -Enable or disable the output of formal and return types for functions in the \ -overloads selection menu."), _("\ -Show whether the output of formal and return types for functions in the \ -overloads selection menu is activated."), - NULL, NULL, NULL, &set_ada_list, &show_ada_list); +Control the display of functions in overloads selection menu."), _("\ +Show how functions in overloads selection menu will be displayed."), + _("\ +When enabled, formal and return types are shown."), + NULL, NULL, &set_ada_list, &show_ada_list); ada_source_charset = gnat_source_charsets[0]; add_setshow_enum_cmd ("source-charset", class_files, -- cgit v1.1