diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/proc-api.c | 12 |
2 files changed, 11 insertions, 6 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index eb480af..29a1d2b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2005-03-09 David Lecomber <david@lecomber.net> + + * proc-api.c (_initialize_proc_api): Fix invalid multi-line + i18n text. + 2005-03-09 Mark Kettenis <kettenis@gnu.org> * sparc-tdep.c (sparc_frame_cache): Adjust cached frame base diff --git a/gdb/proc-api.c b/gdb/proc-api.c index aa0bb7a..e6c4ea9 100644 --- a/gdb/proc-api.c +++ b/gdb/proc-api.c @@ -780,16 +780,16 @@ _initialize_proc_api (void) { struct cmd_list_element *c; - add_setshow_boolean_cmd ("procfs-trace", no_class, &procfs_trace, _("\ -Set tracing for /proc api calls."), _("\ -Show tracing for /proc api calls."), NULL, + add_setshow_boolean_cmd ("procfs-trace", no_class, &procfs_trace, + _("Set tracing for /proc api calls."), + _("Show tracing for /proc api calls."), NULL, set_procfs_trace_cmd, NULL, /* FIXME: i18n: */ &setlist, &showlist); - add_setshow_filename_cmd ("procfs-file", no_class, &procfs_filename, _("\ -Set filename for /proc tracefile."), _("\ -Show filename for /proc tracefile."), NULL, + add_setshow_filename_cmd ("procfs-file", no_class, &procfs_filename, + _("Set filename for /proc tracefile."), + _("Show filename for /proc tracefile."), NULL, set_procfs_file_cmd, NULL, /* FIXME: i18n: */ &setlist, &showlist); |