1
Fork 0
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:
Dmitry Dzhus 2009-07-30 08:04:13 +00:00
parent b5bdfd9f4f
commit 35edc6c64f
2 changed files with 3 additions and 3 deletions

View file

@ -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>

View file

@ -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)