aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/mail
diff options
context:
space:
mode:
authorJuanma Barranquero2019-10-17 02:08:43 +0200
committerJuanma Barranquero2019-10-17 02:08:43 +0200
commit2bb0703e24ec1b02bb2ab4be67719e2e050cc4d3 (patch)
tree77a076491e0635e2728393ac79c87f925e4a935e /lisp/mail
parentd502f0c4b5bf0d6dbf0a125b01db21fa3b6292df (diff)
downloademacs-2bb0703e24ec1b02bb2ab4be67719e2e050cc4d3.tar.gz
emacs-2bb0703e24ec1b02bb2ab4be67719e2e050cc4d3.zip
lisp/*.el: Force non-nil result to t, to match docstring
* lisp/emacs-lock.el (emacs-lock-live-process-p): * lisp/shadowfile.el (shadow-file-match): * lisp/emacs-lisp/edebug.el (edebug-basic-spec): * lisp/mail/rmail.el (rmail-expunge-confirmed): * lisp/net/soap-client.el (soap-should-encode-value-for-xs-element): * lisp/progmodes/idlwave.el (idlwave-quoted): * lisp/progmodes/idlw-shell.el (idlwave-shell-filename-string): * lisp/textmodes/refbib.el (r2b-isa-proceedings): * lisp/textmodes/texnfo-upd.el (texinfo-find-lower-level-node): Normalize boolean result.
Diffstat (limited to 'lisp/mail')
-rw-r--r--lisp/mail/rmail.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el
index 34f8a46761b..0b5f564abf4 100644
--- a/lisp/mail/rmail.el
+++ b/lisp/mail/rmail.el
@@ -3547,8 +3547,10 @@ If `rmail-confirm-expunge' is non-nil, ask user to confirm."
3547 (and (stringp rmail-deleted-vector) 3547 (and (stringp rmail-deleted-vector)
3548 (string-match "D" rmail-deleted-vector) 3548 (string-match "D" rmail-deleted-vector)
3549 (if rmail-confirm-expunge 3549 (if rmail-confirm-expunge
3550 (funcall rmail-confirm-expunge 3550 (and (funcall rmail-confirm-expunge
3551 "Erase deleted messages from Rmail file? ") 3551 "Erase deleted messages from Rmail file? ")
3552 ;; In case r-c-e's function returns non-nil, non-t
3553 t)
3552 t))) 3554 t)))
3553 3555
3554(defun rmail-only-expunge (&optional dont-show) 3556(defun rmail-only-expunge (&optional dont-show)