mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-21 07:30:50 -08:00
(gdb-place-breakpoints): Use full path when setting breakpoints.
This commit is contained in:
parent
b5bdfd9f4f
commit
35edc6c64f
2 changed files with 3 additions and 3 deletions
|
|
@ -8,8 +8,8 @@
|
|||
|
||||
2009-07-29 Dmitry Dzhus <dima@sphinx.net.ru>
|
||||
|
||||
* progmodes/gdb-mi.el (gdb-goto-breakpoint): Use full path when
|
||||
setting breakpoints.
|
||||
* progmodes/gdb-mi.el (gdb-goto-breakpoint)
|
||||
(gdb-place-breakpoints): Use full path when setting breakpoints.
|
||||
|
||||
2009-07-29 Jay Belanger <jay.p.belanger@gmail.com>
|
||||
|
||||
|
|
|
|||
|
|
@ -1613,7 +1613,7 @@ OUTPUT-HANDLER-NAME handler uses customization of CUSTOM-DEFUN."
|
|||
(dolist (breakpoint gdb-breakpoints-list)
|
||||
(let ((line (gdb-get-field breakpoint 'line)))
|
||||
(when line
|
||||
(let ((file (gdb-get-field breakpoint 'file))
|
||||
(let ((file (gdb-get-field breakpoint 'fullname))
|
||||
(flag (gdb-get-field breakpoint 'enabled))
|
||||
(bptno (gdb-get-field breakpoint 'number)))
|
||||
(unless (file-exists-p file)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue