# HG changeset patch # User Karl Heuer # Date 822531388 0 # Node ID 51bfdecb7084e7123af0e63d20002d1111999a16 # Parent fae2e1075bcfa5d31da1a5d5a832756caca4e5d9 (rmail-insert-inbox-text): Pass proper format string to message. diff -r fae2e1075bcf -r 51bfdecb7084 lisp/mail/rmail.el --- a/lisp/mail/rmail.el Thu Jan 25 00:56:19 1996 +0000 +++ b/lisp/mail/rmail.el Thu Jan 25 00:56:28 1996 +0000 @@ -1033,9 +1033,9 @@ (if (looking-at "movemail: ") (delete-region (point-min) (match-end 0))) (beep t) - (message (concat "movemail: " - (buffer-substring (point-min) - (point-max)))) + (message "movemail: %s" + (buffer-substring (point-min) + (point-max))) (sit-for 3) nil)) (if errors (kill-buffer errors))))))