1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-02 11:21:42 +00:00

(mbx_delimit_begin, mbx_delimit_end): Write mbox rather than Babyl

format.  (Bug#2196)
This commit is contained in:
Glenn Morris 2009-02-10 03:30:39 +00:00
parent b943b68f08
commit 3f32be22c6
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2009-02-10 Glenn Morris <rgm@gnu.org>
* movemail.c (mbx_delimit_begin, mbx_delimit_end): Write mbox rather
than Babyl format. (Bug#2196)
2009-01-23 Adrian Robert <Adrian.B.Robert@gmail.com>
* emacsclient.c (decode_options): Use a dummy display name under

View File

@ -923,7 +923,7 @@ int
mbx_delimit_begin (mbf)
FILE *mbf;
{
if (fputs ("\f\n0, unseen,,\n", mbf) == EOF)
if (fputs ("From movemail\n", mbf) == EOF)
return (NOTOK);
return (OK);
}
@ -932,7 +932,7 @@ int
mbx_delimit_end (mbf)
FILE *mbf;
{
if (putc ('\037', mbf) == EOF)
if (putc ('\n', mbf) == EOF)
return (NOTOK);
return (OK);
}