Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
3f32be22
Commit
3f32be22
authored
Feb 10, 2009
by
Glenn Morris
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(mbx_delimit_begin, mbx_delimit_end): Write mbox rather than Babyl
format. (Bug#2196)
parent
b943b68f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
lib-src/ChangeLog
lib-src/ChangeLog
+5
-0
lib-src/movemail.c
lib-src/movemail.c
+2
-2
No files found.
lib-src/ChangeLog
View file @
3f32be22
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
...
...
lib-src/movemail.c
View file @
3f32be22
...
...
@@ -923,7 +923,7 @@ int
mbx_delimit_begin
(
mbf
)
FILE
*
mbf
;
{
if
(
fputs
(
"
\f\n
0, 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
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment