Garbage-collect MHRC (and make it the default).
authorKen Hornstein <kenh@pobox.com>
Fri, 6 Jan 2012 15:37:38 +0000 (10:37 -0500)
committerKen Hornstein <kenh@pobox.com>
Fri, 6 Jan 2012 15:37:38 +0000 (10:37 -0500)
acconfig.h
config/config.c

index ce6b5c4..a326761 100644 (file)
 /* #define REALLYDUMB  1 */
 
 /*
- * If this is defined, nmh will recognize the ~ construct.
- */
-#define MHRC    1
-
-/*
  * Compile simple ftp client into mhn.  This will be used by mhn
  * for ftp access unless you have specified another access method
  * in your .mh_profile or mhn.defaults.  Use the "mhn-access-ftp"
index b08b3e2..a4edc46 100644 (file)
@@ -9,10 +9,7 @@
 
 #include <h/mh.h>
 #include <stdio.h>
-
-#ifdef MHRC
-# include <pwd.h>
-#endif
+#include <pwd.h>
 
 #define nmhbindir(file) NMHBINDIR#file
 #define nmhetcdir(file) NMHETCDIR#file
@@ -35,21 +32,16 @@ etcpath (char *file)
 {
     static char epath[PATH_MAX];
     char *cp;
-#ifdef MHRC
     char *pp;
     struct passwd *pw;
-#endif
 
-#ifdef MHRC
     context_read();
-#endif
 
     switch (*file) {
        case '/': 
            /* If already absolute pathname, return it */
            return file;
 
-#ifdef MHRC
        case '~': 
            /* Expand ~username */
            if ((cp = strchr(pp = file + 1, '/')))
@@ -73,7 +65,6 @@ etcpath (char *file)
            if (access (epath, R_OK) != NOTOK)
                return epath;   /* else fall */
 try_it:
-#endif /* MHRC */
 
        default: 
            /* Check nmh Mail directory */