* lisp/progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
Do not error out when `func' is nil.
This commit is contained in:
parent
67342916c9
commit
c1b4afacf5
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2011-02-03 Sam Steingold <sds@gnu.org>
|
||||
|
||||
* progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
|
||||
Do not error out when `func' is nil.
|
||||
|
||||
2011-02-03 Michael Albinus <michael.albinus@gmx.de>
|
||||
|
||||
* net/tramp-sh.el (tramp-remote-path): Add default settings for
|
||||
|
|
|
@ -2347,7 +2347,8 @@ HANDLER-NAME handler uses customization of CUSTOM-DEFUN. See
|
|||
(bindat-get-field breakpoint 'what)
|
||||
(or pending at
|
||||
(concat "in "
|
||||
(propertize func 'font-lock-face font-lock-function-name-face)
|
||||
(propertize (or func "unknown")
|
||||
'font-lock-face font-lock-function-name-face)
|
||||
(gdb-frame-location breakpoint)))))
|
||||
;; Add clickable properties only for breakpoints with file:line
|
||||
;; information
|
||||
|
|
Loading…
Add table
Reference in a new issue