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/record-btrace.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/record-btrace.c')
-rw-r--r-- | gdb/record-btrace.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gdb/record-btrace.c b/gdb/record-btrace.c index 8fcf638..49cbf13 100644 --- a/gdb/record-btrace.c +++ b/gdb/record-btrace.c @@ -3253,10 +3253,10 @@ Set what memory accesses are allowed during replay."), _("\ Show what memory accesses are allowed during replay."), _("Default is READ-ONLY.\n\n\ The btrace record target does not trace data.\n\ -The memory therefore corresponds to the live target and not \ +The memory therefore corresponds to the live target and not\n\ to the current replay position.\n\n\ When READ-ONLY, allow accesses to read-only memory during replay.\n\ -When READ-WRITE, allow accesses to read-only and read-write memory during \ +When READ-WRITE, allow accesses to read-only and read-write memory during\n\ replay."), NULL, cmd_show_replay_memory_access, &set_record_btrace_cmdlist, @@ -3300,10 +3300,10 @@ Show the cpu to be used for trace decode."), &record_btrace_conf.bts.size, _("Set the record/replay bts buffer size."), _("Show the record/replay bts buffer size."), _("\ -When starting recording request a trace buffer of this size. \ -The actual buffer size may differ from the requested size. \ +When starting recording request a trace buffer of this size.\n\ +The actual buffer size may differ from the requested size.\n\ Use \"info record\" to see the actual buffer size.\n\n\ -Bigger buffers allow longer recording but also take more time to process \ +Bigger buffers allow longer recording but also take more time to process\n\ the recorded execution trace.\n\n\ The trace buffer size may not be changed while recording."), NULL, show_record_bts_buffer_size_value, @@ -3322,9 +3322,9 @@ The trace buffer size may not be changed while recording."), NULL, &record_btrace_conf.pt.size, _("Set the record/replay pt buffer size."), _("Show the record/replay pt buffer size."), _("\ -Bigger buffers allow longer recording but also take more time to process \ +Bigger buffers allow longer recording but also take more time to process\n\ the recorded execution.\n\ -The actual buffer size may differ from the requested size. Use \"info record\" \ +The actual buffer size may differ from the requested size. Use \"info record\"\n\ to see the actual buffer size."), NULL, show_record_pt_buffer_size_value, &set_record_btrace_pt_cmdlist, &show_record_btrace_pt_cmdlist); @@ -3333,9 +3333,9 @@ to see the actual buffer size."), NULL, show_record_pt_buffer_size_value, _("Set event-tracing for record pt."), _("Show event-tracing for record pt."), _("\ -Use \"on\" to enable event tracing for recordings with Intel Processor Trace, \ +Use \"on\" to enable event tracing for recordings with Intel Processor Trace,\n\ and \"off\" to disable it.\n\ -Without an argument, event tracing is enabled. Changing this setting has no\ +Without an argument, event tracing is enabled. Changing this setting has no\n\ effect on an active recording."), set_record_pt_event_tracing_value, show_record_pt_event_tracing_value, |