(rmail-insert-inbox-text): Pass proper format string to message.

This commit is contained in:
Karl Heuer 1996-01-25 00:56:28 +00:00
parent d55235bbdc
commit 1157e1bc32

View file

@ -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))))))