diff options
| author | Eli Zaretskii | 2020-01-31 11:41:14 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2020-01-31 11:41:14 +0200 |
| commit | c362a624d81410bb487e1ea9e2a3a1f18064a485 (patch) | |
| tree | e0a48bab6de36ee3ee4c62366f3febaa21759d12 | |
| parent | 2b1e18ae852c1490dfa22adc71f7582a1258da60 (diff) | |
| download | emacs-c362a624d81410bb487e1ea9e2a3a1f18064a485.tar.gz emacs-c362a624d81410bb487e1ea9e2a3a1f18064a485.zip | |
; * lisp/progmodes/gdb-mi.el (gdb-handle-reply): Fix commentary.
| -rw-r--r-- | lisp/progmodes/gdb-mi.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/gdb-mi.el b/lisp/progmodes/gdb-mi.el index 4b0fd66c7ed..e785acd2840 100644 --- 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 | |||
| 324 | by the reception of this reply." | 324 | by the reception of this reply." |
| 325 | (let ((handler-function (gdb-get-handler-function token-number))) | 325 | (let ((handler-function (gdb-get-handler-function token-number))) |
| 326 | (when handler-function | 326 | (when handler-function |
| 327 | ;; Protect against errors in handler-function. | ||
| 327 | (condition-case err | 328 | (condition-case err |
| 328 | ;; protect against errors in handler-function | ||
| 329 | (funcall handler-function) | 329 | (funcall handler-function) |
| 330 | (error (message (error-message-string err)))) | 330 | (error (message (error-message-string err)))) |
| 331 | (gdb-delete-handler token-number)))) | 331 | (gdb-delete-handler token-number)))) |