From b5946dea7733bd8086f6d8d93bb41c64bd104bd6 Mon Sep 17 00:00:00 2001 From: Lassi Kortela Date: Fri, 9 Aug 2019 20:11:02 +0300 Subject: [PATCH] Remove unused INITFILE config option --- c/flmain.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/c/flmain.c b/c/flmain.c index aa98993..d1f1258 100644 --- a/c/flmain.c +++ b/c/flmain.c @@ -43,9 +43,6 @@ int main(int argc, char *argv[]) fl_init(512 * 1024); fname_buf[0] = '\0'; -#ifdef INITFILE - strcat(fname_buf, INITFILE); -#else value_t str = symbol_value(symbol("*install-dir*")); char *exedir = (str == UNBOUND ? NULL : cvalue_data(str)); if (exedir != NULL) { @@ -53,7 +50,6 @@ int main(int argc, char *argv[]) strcat(fname_buf, PATHSEPSTRING); } strcat(fname_buf, "flisp.boot"); -#endif value_t args[2]; fl_gc_handle(&args[0]);