diff options
author | Doug Evans <dje@google.com> | 2015-09-25 15:40:47 -0700 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2015-09-25 15:42:04 -0700 |
commit | 792005b027e804bfa7ac92a484c5024a05a1684b (patch) | |
tree | 5edc88073c2ea70b9da025fa5fcb896387fae9fa /gdb | |
parent | 9a09557a93b9f11371e4213589878437e567f897 (diff) | |
download | gdb-792005b027e804bfa7ac92a484c5024a05a1684b.zip gdb-792005b027e804bfa7ac92a484c5024a05a1684b.tar.gz gdb-792005b027e804bfa7ac92a484c5024a05a1684b.tar.bz2 |
Fix typo in syntax of record instruction-history begin, end.
gdb/doc/ChangeLog:
* gdb.texinfo (Process Record and Replay): Fix syntax of
"record instruction-history begin, end" and
"record function-call-history begin, end".
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/doc/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index dc9bc88..2ce9186 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,9 @@ +2015-09-25 Doug Evans <dje@google.com> + + * gdb.texinfo (Process Record and Replay): Fix syntax of + "record instruction-history begin, end" and + "record function-call-history begin, end". + 2015-09-22 Simon Marchi <simon.marchi@ericsson.com> * gdb.texinfo (Specifying Source Directories): Fix diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 57e47b8..f298172 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -6765,7 +6765,7 @@ Disassembles ten more instructions after the last disassembly. @item record instruction-history - Disassembles ten more instructions before the last disassembly. -@item record instruction-history @var{begin} @var{end} +@item record instruction-history @var{begin}, @var{end} Disassembles instructions beginning with instruction number @var{begin} until instruction number @var{end}. The instruction number @var{end} is included. @@ -6837,7 +6837,7 @@ Prints ten more functions after the last ten-line print. @item record function-call-history - Prints ten more functions before the last ten-line print. -@item record function-call-history @var{begin} @var{end} +@item record function-call-history @var{begin}, @var{end} Prints functions beginning with function number @var{begin} until function number @var{end}. The function number @var{end} is included. @end table |