From 9cc4fad570353aafafdcaffe457b51d2a04f709f Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 6 Jun 1998 22:04:07 +0000 Subject: [PATCH] (init_callproc): Check Vinstallation_directory even if !initialized. --- src/callproc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/callproc.c b/src/callproc.c index 4cd7dcfeda..a49da6dde3 100644 --- a/src/callproc.c +++ b/src/callproc.c @@ -1242,7 +1242,7 @@ init_callproc () register char * sh; Lisp_Object tempdir; - if (initialized && !NILP (Vinstallation_directory)) + if (!NILP (Vinstallation_directory)) { /* Add to the path the lib-src subdir of the installation dir. */ Lisp_Object tem; -- 2.20.1