diff options
| author | Dave Love | 2000-05-21 11:07:47 +0000 |
|---|---|---|
| committer | Dave Love | 2000-05-21 11:07:47 +0000 |
| commit | 5bf244f1c628f7b339a3399872a15957dc3b0e5d (patch) | |
| tree | 0aa83ab5dec1c8ec1e6565ba1161b2e3a3b55075 /lib-src | |
| parent | 752fb47256a3b381daa796d84d10550e0e957722 (diff) | |
| download | emacs-5bf244f1c628f7b339a3399872a15957dc3b0e5d.tar.gz emacs-5bf244f1c628f7b339a3399872a15957dc3b0e5d.zip | |
(ERROR_MAX): Increase to 160.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 8 | ||||
| -rw-r--r-- | lib-src/pop.c | 3 |
2 files changed, 9 insertions, 2 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 55f78900ed4..a53b29aa11b 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2000-05-21 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * movemail.c: Include config.h, not ../src/config.h. | ||
| 4 | (Errmsg): Bump length. | ||
| 5 | |||
| 6 | * pop.c (ERROR_MAX): Increase to 160. | ||
| 7 | |||
| 1 | 2000-05-04 Gerd Moellmann <gerd@gnu.org> | 8 | 2000-05-04 Gerd Moellmann <gerd@gnu.org> |
| 2 | 9 | ||
| 3 | * ebrowse.c (DEFAULT_OUTFILE): Set to `BROWSE'. | 10 | * ebrowse.c (DEFAULT_OUTFILE): Set to `BROWSE'. |
| @@ -20,7 +27,6 @@ | |||
| 20 | (lang_names): Install it. | 27 | (lang_names): Install it. |
| 21 | (Texinfo_suffixes): New variable. | 28 | (Texinfo_suffixes): New variable. |
| 22 | 29 | ||
| 23 | >>>>>>> 2.24 | ||
| 24 | 2000-04-19 Gerd Moellmann <gerd@gnu.org> | 30 | 2000-04-19 Gerd Moellmann <gerd@gnu.org> |
| 25 | 31 | ||
| 26 | * ebrowse.c (xmalloc, xrealloc): Rewritten. | 32 | * ebrowse.c (xmalloc, xrealloc): Rewritten. |
diff --git a/lib-src/pop.c b/lib-src/pop.c index c6b86e5a2dc..9af8805387f 100644 --- a/lib-src/pop.c +++ b/lib-src/pop.c | |||
| @@ -138,7 +138,8 @@ static int gettermination _P((popserver)); | |||
| 138 | static void pop_trash _P((popserver)); | 138 | static void pop_trash _P((popserver)); |
| 139 | static char *find_crlf _P((char *, int)); | 139 | static char *find_crlf _P((char *, int)); |
| 140 | 140 | ||
| 141 | #define ERROR_MAX 80 /* a pretty arbitrary size */ | 141 | #define ERROR_MAX 160 /* a pretty arbitrary size, but needs |
| 142 | to be bigger than the one-time 80 */ | ||
| 142 | #define POP_PORT 110 | 143 | #define POP_PORT 110 |
| 143 | #define KPOP_PORT 1109 | 144 | #define KPOP_PORT 1109 |
| 144 | #define POP_SERVICE "pop3" /* we don't want the POP2 port! */ | 145 | #define POP_SERVICE "pop3" /* we don't want the POP2 port! */ |