diff options
| author | Paul Eggert | 2011-02-21 10:37:35 -0800 |
|---|---|---|
| committer | Paul Eggert | 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.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 * */); | |||
| 67 | #include <stdio.h> | 67 | #include <stdio.h> |
| 68 | #ifdef STDC_HEADERS | 68 | #ifdef STDC_HEADERS |
| 69 | #include <string.h> | 69 | #include <string.h> |
| 70 | #define index strchr | ||
| 71 | #endif | 70 | #endif |
| 72 | #include <unistd.h> | 71 | #include <unistd.h> |
| 73 | 72 | ||
| @@ -122,9 +121,9 @@ static char *find_crlf (char *, int); | |||
| 122 | to be bigger than the original | 121 | to be bigger than the original |
| 123 | value of 80 */ | 122 | value of 80 */ |
| 124 | #define POP_PORT 110 | 123 | #define POP_PORT 110 |
| 125 | #define KPOP_PORT 1109 | ||
| 126 | #define POP_SERVICE "pop3" /* we don't want the POP2 port! */ | 124 | #define POP_SERVICE "pop3" /* we don't want the POP2 port! */ |
| 127 | #ifdef KERBEROS | 125 | #ifdef KERBEROS |
| 126 | #define KPOP_PORT 1109 | ||
| 128 | #define KPOP_SERVICE "kpop" /* never used: look for 20060515 to see why */ | 127 | #define KPOP_SERVICE "kpop" /* never used: look for 20060515 to see why */ |
| 129 | #endif | 128 | #endif |
| 130 | 129 | ||