diff options
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/progmodes/gdb-mi.el | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 07a41b62aaa..e210a1697bc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -8,8 +8,8 @@ | |||
| 8 | 8 | ||
| 9 | 2009-07-29 Dmitry Dzhus <dima@sphinx.net.ru> | 9 | 2009-07-29 Dmitry Dzhus <dima@sphinx.net.ru> |
| 10 | 10 | ||
| 11 | * progmodes/gdb-mi.el (gdb-goto-breakpoint): Use full path when | 11 | * progmodes/gdb-mi.el (gdb-goto-breakpoint) |
| 12 | setting breakpoints. | 12 | (gdb-place-breakpoints): Use full path when setting breakpoints. |
| 13 | 13 | ||
| 14 | 2009-07-29 Jay Belanger <jay.p.belanger@gmail.com> | 14 | 2009-07-29 Jay Belanger <jay.p.belanger@gmail.com> |
| 15 | 15 | ||
diff --git a/lisp/progmodes/gdb-mi.el b/lisp/progmodes/gdb-mi.el index c4a6134257f..eb06a387258 100644 --- a/lisp/progmodes/gdb-mi.el +++ b/lisp/progmodes/gdb-mi.el | |||
| @@ -1613,7 +1613,7 @@ OUTPUT-HANDLER-NAME handler uses customization of CUSTOM-DEFUN." | |||
| 1613 | (dolist (breakpoint gdb-breakpoints-list) | 1613 | (dolist (breakpoint gdb-breakpoints-list) |
| 1614 | (let ((line (gdb-get-field breakpoint 'line))) | 1614 | (let ((line (gdb-get-field breakpoint 'line))) |
| 1615 | (when line | 1615 | (when line |
| 1616 | (let ((file (gdb-get-field breakpoint 'file)) | 1616 | (let ((file (gdb-get-field breakpoint 'fullname)) |
| 1617 | (flag (gdb-get-field breakpoint 'enabled)) | 1617 | (flag (gdb-get-field breakpoint 'enabled)) |
| 1618 | (bptno (gdb-get-field breakpoint 'number))) | 1618 | (bptno (gdb-get-field breakpoint 'number))) |
| 1619 | (unless (file-exists-p file) | 1619 | (unless (file-exists-p file) |