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/movemail.c | |
| parent | 1afca8cc21992331ee81622702d5449473cafe94 (diff) | |
| download | emacs-0d7fdc0ef49f92c2ae20e13b172fc5ccc81f36f7.tar.gz | |
* 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/movemail.c')
| -rw-r--r-- | lib-src/movemail.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/lib-src/movemail.c b/lib-src/movemail.c index bb93d84d89a..a5084f27f22 100644 --- a/lib-src/movemail.c +++ b/lib-src/movemail.c @@ -80,13 +80,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ #undef access #endif /* MSDOS */ -#ifndef DIRECTORY_SEP -#define DIRECTORY_SEP '/' -#endif -#ifndef IS_DIRECTORY_SEP -#define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP) -#endif - #ifdef WINDOWSNT #include "ntlib.h" #undef access @@ -670,7 +663,6 @@ xmalloc (unsigned int size) #define NOTOK (-1) #define OK 0 -#define DONE 1 static char Errmsg[200]; /* POP errors, at least, can exceed the original length of 80. */ @@ -855,13 +847,6 @@ pop_retr (popserver server, int msgno, FILE *arg) return (OK); } -/* Do this as a macro instead of using strcmp to save on execution time. */ -#define IS_FROM_LINE(a) ((a[0] == 'F') \ - && (a[1] == 'r') \ - && (a[2] == 'o') \ - && (a[3] == 'm') \ - && (a[4] == ' ')) - static int mbx_write (char *line, int len, FILE *mbf) { |
