diff options
author | Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> | 2020-09-11 13:50:09 +0200 |
---|---|---|
committer | Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> | 2020-09-11 13:50:09 +0200 |
commit | 7a4e8e7d551eaddc63c67d85c02c7573f5a56ae8 (patch) | |
tree | 29788f4bc2fbece7e866ecc2437567bd598e7d4c /gdb | |
parent | a56f73917a8f96892c6e7d9ae60fb5a0d0495da2 (diff) | |
download | gdb-7a4e8e7d551eaddc63c67d85c02c7573f5a56ae8.zip gdb-7a4e8e7d551eaddc63c67d85c02c7573f5a56ae8.tar.gz gdb-7a4e8e7d551eaddc63c67d85c02c7573f5a56ae8.tar.bz2 |
gdb/breakpoint: fix typo in help message of "set breakpoint condition-evaluation"
The options for the "breakpoint condition-evaluation" setting are
"host", "target", and "auto". The help message mentions the option
"gdb" at one point instead of "host". Fix this typo. Also add a period.
gdb/ChangeLog:
2020-09-11 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
* breakpoint.c: Fix typo in the help message of the
"set breakpoint condition-evaluation" command.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/breakpoint.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b0a6c8f..6444bc2 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2020-09-11 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> + + * breakpoint.c: Fix typo in the help message of the + "set breakpoint condition-evaluation" command. + 2020-09-10 Kamil Rytarowski <n54@gmx.com> * nbsd-nat.c: Include "nat/netbsd-nat.h". diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 670cba0..fff80ff 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -15914,7 +15914,7 @@ breakpoint conditions will be downloaded to the target (if the target\n\ supports such feature) and conditions will be evaluated on the target's side.\n\ If this is set to \"auto\" (default), this will be automatically set to\n\ \"target\" if it supports condition evaluation, otherwise it will\n\ -be set to \"gdb\""), +be set to \"host\"."), &set_condition_evaluation_mode, &show_condition_evaluation_mode, &breakpoint_set_cmdlist, |