* lisp/progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):

Do not error out when `func' is nil.
This commit is contained in:
Sam Steingold 2011-02-03 14:59:17 -05:00
parent 67342916c9
commit c1b4afacf5
2 changed files with 7 additions and 1 deletions

View file

@ -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

View file

@ -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