]> git.eshelyaron.com Git - emacs.git/commitdiff
(gdb-place-breakpoints): Use full path when setting breakpoints.
authorDmitry Dzhus <dima@sphinx.net.ru>
Thu, 30 Jul 2009 08:04:13 +0000 (08:04 +0000)
committerDmitry Dzhus <dima@sphinx.net.ru>
Thu, 30 Jul 2009 08:04:13 +0000 (08:04 +0000)
lisp/ChangeLog
lisp/progmodes/gdb-mi.el

index 07a41b62aaad111e5bf227526ac3fd058630c026..e210a1697bc91a147561e058c28d6e32e485df79 100644 (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>
 
index c4a6134257f424b9303705ae7cf0ecf8ac026db4..eb06a3872588d95bdde7114bfa90ccd7be1ddef0 100644 (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)