aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorAndreas Schwab2010-07-06 13:11:28 +0200
committerAndreas Schwab2010-07-06 13:11:28 +0200
commite2ad23ef3f72a4d8169648592740143770c2323e (patch)
treee40f596b74bf183cc21bdae8f55721ba04901c8b /lib-src
parent69e24e34c43f022dc2c21a4374e043790b27c6ac (diff)
downloademacs-e2ad23ef3f72a4d8169648592740143770c2323e.tar.gz
emacs-e2ad23ef3f72a4d8169648592740143770c2323e.zip
* movemail.c: Add MAIL_USE_POP around prototypes.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ChangeLog4
-rw-r--r--lib-src/movemail.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index 8afa8e2b54b..fcdc00993ef 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,7 @@
12010-07-06 Andreas Schwab <schwab@linux-m68k.org>
2
3 * movemail.c: Add MAIL_USE_POP around prototypes.
4
12010-07-04 Dan Nicolaescu <dann@ics.uci.edu> 52010-07-04 Dan Nicolaescu <dann@ics.uci.edu>
2 6
3 * fakemail.c (action): Convert function definitions to standard C. 7 * fakemail.c (action): Convert function definitions to standard C.
diff --git a/lib-src/movemail.c b/lib-src/movemail.c
index 733303455b0..ad9f7c76ea0 100644
--- a/lib-src/movemail.c
+++ b/lib-src/movemail.c
@@ -154,11 +154,13 @@ void pfatal_with_name (char *name);
154void pfatal_and_delete (char *name); 154void pfatal_and_delete (char *name);
155char *concat (char *s1, char *s2, char *s3); 155char *concat (char *s1, char *s2, char *s3);
156long *xmalloc (unsigned int size); 156long *xmalloc (unsigned int size);
157#ifdef MAIL_USE_POP
157int popmail (char *mailbox, char *outfile, int preserve, char *password, int reverse_order); 158int popmail (char *mailbox, char *outfile, int preserve, char *password, int reverse_order);
158int pop_retr (popserver server, int msgno, FILE *arg); 159int pop_retr (popserver server, int msgno, FILE *arg);
159int mbx_write (char *line, int len, FILE *mbf); 160int mbx_write (char *line, int len, FILE *mbf);
160int mbx_delimit_begin (FILE *mbf); 161int mbx_delimit_begin (FILE *mbf);
161int mbx_delimit_end (FILE *mbf); 162int mbx_delimit_end (FILE *mbf);
163#endif
162 164
163/* Nonzero means this is name of a lock file to delete on fatal error. */ 165/* Nonzero means this is name of a lock file to delete on fatal error. */
164char *delete_lockname; 166char *delete_lockname;