projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2b1e18a
)
; * lisp/progmodes/gdb-mi.el (gdb-handle-reply): Fix commentary.
author
Eli Zaretskii
<eliz@gnu.org>
Fri, 31 Jan 2020 09:41:14 +0000
(11:41 +0200)
committer
Eli Zaretskii
<eliz@gnu.org>
Fri, 31 Jan 2020 09:41:14 +0000
(11:41 +0200)
lisp/progmodes/gdb-mi.el
patch
|
blob
|
history
diff --git
a/lisp/progmodes/gdb-mi.el
b/lisp/progmodes/gdb-mi.el
index 4b0fd66c7ed5f74d65f2a105f3eab4aca8de92dc..e785acd2840884333d925c24cc50ec302584066b 100644
(file)
--- a/
lisp/progmodes/gdb-mi.el
+++ b/
lisp/progmodes/gdb-mi.el
@@
-324,8
+324,8
@@
in `gdb-handler-list' and clears all pending handlers invalidated
by the reception of this reply."
(let ((handler-function (gdb-get-handler-function token-number)))
(when handler-function
+ ;; Protect against errors in handler-function.
(condition-case err
- ;; protect against errors in handler-function
(funcall handler-function)
(error (message (error-message-string err))))
(gdb-delete-handler token-number))))