# HG changeset patch # User Dmitry Dzhus # Date 1248941053 0 # Node ID 335df621bc5ceef10c07c12e332ecda5ca2e5395 # Parent c4bef3978513b080bea9e525c2b5e05b4598de04 (gdb-place-breakpoints): Use full path when setting breakpoints. diff -r c4bef3978513 -r 335df621bc5c lisp/ChangeLog --- a/lisp/ChangeLog Thu Jul 30 04:57:42 2009 +0000 +++ b/lisp/ChangeLog Thu Jul 30 08:04:13 2009 +0000 @@ -8,8 +8,8 @@ 2009-07-29 Dmitry Dzhus - * 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 diff -r c4bef3978513 -r 335df621bc5c lisp/progmodes/gdb-mi.el --- a/lisp/progmodes/gdb-mi.el Thu Jul 30 04:57:42 2009 +0000 +++ b/lisp/progmodes/gdb-mi.el Thu Jul 30 08:04:13 2009 +0000 @@ -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)