From c7c93bd96e9eac1b18353c87cbe039f118a3c908 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 9 Aug 2005 02:57:30 +0000 Subject: [PATCH] (mail-yank-original): Use with-no-warnings. --- lisp/mail/sendmail.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index 08568df93c2..f2dec757520 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el @@ -1432,7 +1432,9 @@ and don't delete any header fields." ;; delete that window to save screen space. ;; t means don't alter other frames. (delete-windows-on original t) - (insert-buffer original) + (with-no-warnings + ;; We really want this to set mark. + (insert-buffer original)) (set-text-properties (point) (mark t) nil)) (if (consp arg) nil -- 2.39.2