From 8451b5e9c5c623b448da294162e2cb3807caf414 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 3 May 2003 13:52:57 +0000 Subject: [PATCH] (mail-dont-send, mail-bury): Make ARG optional. --- lisp/mail/sendmail.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index 7ce31eaeb47..e89dc3392f5 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el @@ -693,13 +693,13 @@ Prefix arg means don't delete this window." (mail-send) (mail-bury arg)) -(defun mail-dont-send (arg) +(defun mail-dont-send (&optional arg) "Don't send the message you have been editing. Prefix arg means don't delete this window." (interactive "P") (mail-bury arg)) -(defun mail-bury (arg) +(defun mail-bury (&optional arg) "Bury this mail buffer." (let ((newbuf (other-buffer (current-buffer)))) (bury-buffer (current-buffer)) -- 2.39.2