aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.c b/main.c
index 7fa0bf2..060f4b9 100644
--- a/main.c
+++ b/main.c
@@ -1,4 +1,4 @@
-/* $Id: main.c,v 1.113 2002/09/24 17:06:04 ukai Exp $ */
+/* $Id: main.c,v 1.114 2002/09/28 16:32:49 ukai Exp $ */
#define MAINPROGRAM
#include "fm.h"
#include <signal.h>
@@ -444,9 +444,9 @@ MAIN(int argc, char **argv, char **envp)
set_no_proxy(p);
}
- if (Editor == NULL && (p = getenv("EDITOR")) != NULL)
+ if (!non_null(Editor) && (p = getenv("EDITOR")) != NULL)
Editor = p;
- if (Mailer == NULL && (p = getenv("MAILER")) != NULL)
+ if (!non_null(Mailer) && (p = getenv("MAILER")) != NULL)
Mailer = p;
/* argument search 2 */