comparison 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
comparison
equal deleted inserted replaced
17604:77b137e2d9a7 17605:83850481ae70
2514 } 2514 }
2515 } 2515 }
2516 } 2516 }
2517 else 2517 else
2518 { 2518 {
2519 /* ../lisp refers to the build directory. 2519 /* NORMAL refers to the lisp dir in the source directory. */
2520 NORMAL refers to the lisp dir in the source directory. */ 2520 /* We used to add ../lisp at the front here, but
2521 Vload_path = Fcons (build_string ("../lisp"), 2521 that caused trouble because it was copied from dump_path
2522 decode_env_path (0, normal)); 2522 into Vload_path, aboe, when Vinstallation_directory was non-nil.
2523 It should be unnecessary. */
2524 Vload_path = decode_env_path (0, normal);
2523 dump_path = Vload_path; 2525 dump_path = Vload_path;
2524 } 2526 }
2525 #endif 2527 #endif
2526 2528
2527 #ifndef WINDOWSNT 2529 #ifndef WINDOWSNT