diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-02-21 10:37:35 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-02-21 10:37:35 -0800 |
commit | 0d7fdc0ef49f92c2ae20e13b172fc5ccc81f36f7 (patch) | |
tree | d3ee8e8f25375fac9ab75dcd72914cd28b977c8e /lib-src/pop.c | |
parent | 1afca8cc21992331ee81622702d5449473cafe94 (diff) | |
download | emacs-0d7fdc0ef49f92c2ae20e13b172fc5ccc81f36f7.tar.gz emacs-0d7fdc0ef49f92c2ae20e13b172fc5ccc81f36f7.tar.bz2 emacs-0d7fdc0ef49f92c2ae20e13b172fc5ccc81f36f7.zip |
* movemail.c: (DIRECTORY_SEP, IS_DIRECTORY_SEP, DONE, IS_FROM_LINE):
Remove unused macros.
* pop.c (index): Remove unused macro.
(KPOP_PORT): Define only if KERBEROS is defined.
Diffstat (limited to 'lib-src/pop.c')
-rw-r--r-- | lib-src/pop.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib-src/pop.c b/lib-src/pop.c index a3fda09d44f..159926e97b0 100644 --- a/lib-src/pop.c +++ b/lib-src/pop.c @@ -67,7 +67,6 @@ extern struct servent *hes_getservbyname (/* char *, char * */); #include <stdio.h> #ifdef STDC_HEADERS #include <string.h> -#define index strchr #endif #include <unistd.h> @@ -122,9 +121,9 @@ static char *find_crlf (char *, int); to be bigger than the original value of 80 */ #define POP_PORT 110 -#define KPOP_PORT 1109 #define POP_SERVICE "pop3" /* we don't want the POP2 port! */ #ifdef KERBEROS +#define KPOP_PORT 1109 #define KPOP_SERVICE "kpop" /* never used: look for 20060515 to see why */ #endif |