emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp ChangeLog progmodes/gdb-mi.el


From: Dmitry Dzhus
Subject: [Emacs-diffs] emacs/lisp ChangeLog progmodes/gdb-mi.el
Date: Thu, 30 Jul 2009 08:04:18 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Dmitry Dzhus <sphinx>   09/07/30 08:04:17

Modified files:
        lisp           : ChangeLog 
        lisp/progmodes : gdb-mi.el 

Log message:
        (gdb-place-breakpoints): Use full path when setting breakpoints.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.15871&r2=1.15872
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/progmodes/gdb-mi.el?cvsroot=emacs&r1=1.16&r2=1.17

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.15871
retrieving revision 1.15872
diff -u -b -r1.15871 -r1.15872
--- ChangeLog   30 Jul 2009 04:44:23 -0000      1.15871
+++ ChangeLog   30 Jul 2009 08:04:13 -0000      1.15872
@@ -8,8 +8,8 @@
 
 2009-07-29  Dmitry Dzhus  <address@hidden>
 
-       * 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  <address@hidden>
 

Index: progmodes/gdb-mi.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/progmodes/gdb-mi.el,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -b -r1.16 -r1.17
--- progmodes/gdb-mi.el 29 Jul 2009 09:14:18 -0000      1.16
+++ progmodes/gdb-mi.el 30 Jul 2009 08:04:17 -0000      1.17
@@ -1613,7 +1613,7 @@
     (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)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]