From: Chong Yidong Date: Sun, 17 Jan 2010 23:34:53 +0000 (-0500) Subject: Fix handling of arbitrary YANK-ACTION functions from compose-mail. X-Git-Tag: emacs-pretest-23.1.92~35^2~1 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9295137d69b5a0494b54c49736bb86ef689ce9b0;p=emacs.git Fix handling of arbitrary YANK-ACTION functions from compose-mail. * mail/sendmail.el (mail-yank-original): Set the mark if the specified function for yanking does not do it. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d3b9a27a092..81a5e1c9f53 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2010-01-17 Chong Yidong + + * mail/sendmail.el (mail-yank-original): Set the mark if the + specified function for yanking does not do it. + 2010-01-17 Dan Nicolaescu * vc.el (with-vc-properties): Deal with directory arguments. (Bug#5298) diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index 7004133f584..da8fe85da82 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el @@ -1505,14 +1505,18 @@ and don't delete any header fields." (interactive "P") (if mail-reply-action (let ((start (point)) - (original mail-reply-action)) + (original mail-reply-action) + (omark (mark t))) (and (consp original) (eq (car original) 'insert-buffer) (setq original (nth 1 original))) (if (consp original) - (apply (car original) (cdr original)) - ;; If the original message is in another window in the same frame, - ;; delete that window to save screen space. - ;; t means don't alter other frames. + (progn + ;; Call yank function, and set the mark if it doesn't. + (apply (car original) (cdr original)) + (if (eq omark (mark t)) + (push-mark (point)))) + ;; If the original message is in another window in the same + ;; frame, delete that window to save space. (delete-windows-on original t) (with-no-warnings ;; We really want this to set mark.