X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=emacs%2Fnotmuch-show.el;h=df10d4bad93b3936c00461194774cef4214725c1;hp=f6ca827e0525933fa8fc20a0e434f1bf9df58353;hb=1ada97e05b5385ef242b19c0d5903628a97e06fe;hpb=2d024ff48c74f96dd3888de7161c964e61163369 diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el index f6ca827e..df10d4ba 100644 --- a/emacs/notmuch-show.el +++ b/emacs/notmuch-show.el @@ -785,7 +785,10 @@ message at DEPTH in the current thread." (while (and handlers (not (condition-case err (funcall (car handlers) msg part content-type nth depth button) - (error (progn + ;; Specifying `debug' here lets the debugger + ;; run if `debug-on-error' is non-nil. + ((debug error) + (progn (insert "!!! Bodypart insert error: ") (insert (error-message-string err)) (insert " !!!\n") nil)))))