]> git.eshelyaron.com Git - emacs.git/commitdiff
(init_callproc): Set exec_directory if installation_directory is
authorRichard M. Stallman <rms@gnu.org>
Fri, 2 Jul 1999 12:57:10 +0000 (12:57 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 2 Jul 1999 12:57:10 +0000 (12:57 +0000)
non-nil, without a test of exec_path.

src/callproc.c

index d6be8b6ff037703a5cf1aae1949ee5519936e882..61b25e15e9f6cef73afdfbee6db5317a83722922 100644 (file)
@@ -1272,14 +1272,13 @@ init_callproc ()
       Lisp_Object tem;
       tem = Fexpand_file_name (build_string ("lib-src"),
                               Vinstallation_directory);
-      if (NILP (Fmember (tem, Vexec_path)))
-       {
 #ifndef DOS_NT
          /* MSDOS uses wrapped binaries, so don't do this.  */
-         Vexec_path = nconc2 (Vexec_path, Fcons (tem, Qnil));
-         Vexec_directory = Ffile_name_as_directory (tem);
+      if (NILP (Fmember (tem, Vexec_path)))
+       Vexec_path = nconc2 (Vexec_path, Fcons (tem, Qnil));
+      
+      Vexec_directory = Ffile_name_as_directory (tem);
 #endif /* not DOS_NT */
-       }
 
       /* Maybe use ../etc as well as ../lib-src.  */
       if (data_dir == 0)