(rmail-insert-inbox-text): Pass proper format string to message.
This commit is contained in:
parent
d55235bbdc
commit
1157e1bc32
1 changed files with 3 additions and 3 deletions
|
|
@ -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))))))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue