aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGeoff Voelker1995-05-27 00:19:05 +0000
committerGeoff Voelker1995-05-27 00:19:05 +0000
commitffd9c2a18859317a5251551c84d2a101a5bddedd (patch)
tree657a61cb7f27e97cb460fd4a945986acee9ef84f /src
parent2e2b8e220e0e688875c6f3892884bf607adc2761 (diff)
downloademacs-ffd9c2a18859317a5251551c84d2a101a5bddedd.tar.gz
emacs-ffd9c2a18859317a5251551c84d2a101a5bddedd.zip
(init_lread) [CANNOT_DUMP]: Set Vload_path to EMACSLOADPATH.
Diffstat (limited to 'src')
-rw-r--r--src/lread.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lread.c b/src/lread.c
index a3a8844cf98..65b4b665c19 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -2160,8 +2160,10 @@ init_lread ()
2160 2160
2161 /* If the EMACSLOADPATH environment variable is set, use its value. 2161 /* If the EMACSLOADPATH environment variable is set, use its value.
2162 This doesn't apply if we're dumping. */ 2162 This doesn't apply if we're dumping. */
2163#ifndef CANNOT_DUMP
2163 if (NILP (Vpurify_flag) 2164 if (NILP (Vpurify_flag)
2164 && egetenv ("EMACSLOADPATH")) 2165 && egetenv ("EMACSLOADPATH"))
2166#endif
2165 Vload_path = decode_env_path ("EMACSLOADPATH", normal); 2167 Vload_path = decode_env_path ("EMACSLOADPATH", normal);
2166 2168
2167 Vvalues = Qnil; 2169 Vvalues = Qnil;