diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-01-25 00:56:28 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-01-25 00:56:28 +0000 |
commit | a437b1ea64dfd76c77f6b8e24a92debc2adfd957 (patch) | |
tree | 252c6867f1bc041a110812e4b6d3fd752f9660b7 | |
parent | 67ae9aa65af8f97a036f6f0a90f4d90194d214fd (diff) | |
download | emacs-a437b1ea64dfd76c77f6b8e24a92debc2adfd957.tar.gz |
(rmail-insert-inbox-text): Pass proper format string to message.
-rw-r--r-- | lisp/mail/rmail.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index f8592223a96..a63e9de6323 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -1033,9 +1033,9 @@ It returns t if it got any new messages." (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)))))) |