]> code.delx.au - gnu-emacs/commitdiff
(init_lread): Don't add ../lisp to the dump-time load path.
authorRichard M. Stallman <rms@gnu.org>
Wed, 30 Apr 1997 18:41:53 +0000 (18:41 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 30 Apr 1997 18:41:53 +0000 (18:41 +0000)
src/lread.c

index 5b4cd3e748f9bf1abb8c715bfca22274e0690a81..f46fa1717a2bc082163c1a3bd4f853537dd6d818 100644 (file)
@@ -2516,10 +2516,12 @@ init_lread ()
     }
   else
     {
-      /* ../lisp refers to the build directory.
-        NORMAL refers to the lisp dir in the source directory.  */
-      Vload_path = Fcons (build_string ("../lisp"),
-                         decode_env_path (0, normal));
+      /* NORMAL refers to the lisp dir in the source directory.  */
+      /* We used to add ../lisp at the front here, but
+        that caused trouble because it was copied from dump_path
+        into Vload_path, aboe, when Vinstallation_directory was non-nil.
+        It should be unnecessary.  */
+      Vload_path = decode_env_path (0, normal);
       dump_path = Vload_path;
     }
 #endif