diff src/lread.c @ 17605:83850481ae70

(init_lread): Don't add ../lisp to the dump-time load path.
author Richard M. Stallman <rms@gnu.org>
date Wed, 30 Apr 1997 18:41:53 +0000
parents c19c552c486f
children 72aec83491a2
line wrap: on
line diff
--- a/src/lread.c	Wed Apr 30 18:34:17 1997 +0000
+++ b/src/lread.c	Wed Apr 30 18:41:53 1997 +0000
@@ -2516,10 +2516,12 @@
     }
   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