diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2023-02-08 15:36:23 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2023-02-08 15:46:02 -0500 |
commit | c583a2520616c2736cffc389c89a48b159366e6c (patch) | |
tree | b4925f26506fcee96c16119431c01760f05db95d /gdb/guile/scm-auto-load.c | |
parent | ca7f92c2f15b86b09c4a8ad14806bef666308d31 (diff) | |
download | binutils-users/simark/clang-format.zip binutils-users/simark/clang-format.tar.gz binutils-users/simark/clang-format.tar.bz2 |
Run clang-format.shusers/simark/clang-format
Change-Id: Ia948cc26d534b0dd02702244d52434b1a2093968
Diffstat (limited to 'gdb/guile/scm-auto-load.c')
-rw-r--r-- | gdb/guile/scm-auto-load.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/gdb/guile/scm-auto-load.c b/gdb/guile/scm-auto-load.c index fc98d99..a520fe5 100644 --- a/gdb/guile/scm-auto-load.c +++ b/gdb/guile/scm-auto-load.c @@ -38,7 +38,7 @@ static void show_auto_load_guile_scripts (struct ui_file *file, int from_tty, struct cmd_list_element *c, const char *value) { - gdb_printf (file, _("Auto-loading of Guile scripts is %s.\n"), value); + gdb_printf (file, _ ("Auto-loading of Guile scripts is %s.\n"), value); } /* See guile-internal.h. */ @@ -56,14 +56,16 @@ info_auto_load_guile_scripts (const char *pattern, int from_tty) { auto_load_info_scripts (pattern, from_tty, &extension_language_guile); } - + void gdbscm_initialize_auto_load (void) { add_setshow_boolean_cmd ("guile-scripts", class_support, - &auto_load_guile_scripts, _("\ -Set the debugger's behaviour regarding auto-loaded Guile scripts."), _("\ -Show the debugger's behaviour regarding auto-loaded Guile scripts."), _("\ + &auto_load_guile_scripts, _ ("\ +Set the debugger's behaviour regarding auto-loaded Guile scripts."), + _ ("\ +Show the debugger's behaviour regarding auto-loaded Guile scripts."), + _ ("\ If enabled, auto-loaded Guile scripts are loaded when the debugger reads\n\ an executable or shared library.\n\ This options has security implications for untrusted inferiors."), @@ -72,7 +74,7 @@ This options has security implications for untrusted inferiors."), auto_load_show_cmdlist_get ()); add_cmd ("guile-scripts", class_info, info_auto_load_guile_scripts, - _("Print the list of automatically loaded Guile scripts.\n\ + _ ("Print the list of automatically loaded Guile scripts.\n\ Usage: info auto-load guile-scripts [REGEXP]"), auto_load_info_cmdlist_get ()); } |