Use condition-case-unless-debug in nnselect-run
* lisp/gnus/nnselect.el (nnselect-run): This is confusing for users, make it more yielding to common debugging strategies.
This commit is contained in:
parent
10a14f6ac3
commit
0212fb180a
1 changed files with 1 additions and 1 deletions
|
|
@ -777,7 +777,7 @@ If this variable is nil, or if the provided function returns nil,
|
|||
Return an article list."
|
||||
(let ((func (alist-get 'nnselect-function specs))
|
||||
(args (alist-get 'nnselect-args specs)))
|
||||
(condition-case err
|
||||
(condition-case-unless-debug err
|
||||
(funcall func args)
|
||||
(error (gnus-error 3 "nnselect-run: %s on %s gave error %s" func args err)
|
||||
[]))))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue