gnus-advanced-body: Fix return value

* gnus-logic.el (gnus-advanced-body): Return whether the search
succeeded, not the value of one of the cleanup forms.
This commit is contained in:
Sean Whitton 2022-07-06 20:34:33 -07:00
parent ca58872a53
commit dafbdb87ec

View file

@ -224,8 +224,8 @@
(goto-char (point-min))
(prog1
(funcall search-func match nil t)
(widen)))
(when handles (mm-destroy-parts handles))))))
(widen)
(when handles (mm-destroy-parts handles))))))))
(provide 'gnus-logic)