diff options
author | Keith Seitz <keiths@redhat.com> | 2016-02-09 10:02:53 -0800 |
---|---|---|
committer | Keith Seitz <keiths@redhat.com> | 2016-02-09 14:29:21 -0800 |
commit | a96e36da2f5278949099b0b985b2fa6ce474b135 (patch) | |
tree | 815cc75257d0565feff6c093d3e9d1b8ca414022 /gdb/ChangeLog | |
parent | 9f61929fd82fb632ee7c3be883d7086afc5c65d0 (diff) | |
download | gdb-a96e36da2f5278949099b0b985b2fa6ce474b135.zip gdb-a96e36da2f5278949099b0b985b2fa6ce474b135.tar.gz gdb-a96e36da2f5278949099b0b985b2fa6ce474b135.tar.bz2 |
Use string_to_event_location_basic in guile.
This patch, analogous to the previous python patch, implements proper
legacy linespec support in guile code using the newly introduced
string_to_event_location_basic.
gdb/ChangeLog
* guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Skip
leading whitespace and use string_to_event_location_basic instead
of new_linespec_location.
gdb/testsuite/ChangeLog
* gdb.guile/scm-breakpoint.exp (test_bkpt_address): New procedure.
(toplevel): Call test_bkpt_address.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 64fc796..f7591ff 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,11 @@ 2016-02-09 Keith Seitz <keiths@redhat.com> + * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Skip + leading whitespace and use string_to_event_location_basic instead + of new_linespec_location. + +2016-02-09 Keith Seitz <keiths@redhat.com> + PR python/19506 * python/py-breakpoint.c (bppy_init): Use string_to_event_location_basic instead of new_linespec_location. |