aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/lread.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lread.c b/src/lread.c
index 0daf1764cf6..ac4e5bb333e 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -3548,7 +3548,8 @@ otherwise to default specified by file `epaths.h' when Emacs was built.");
3548This list should not include the empty string."); 3548This list should not include the empty string.");
3549 Vload_suffixes = Fcons (build_string (".elc"), 3549 Vload_suffixes = Fcons (build_string (".elc"),
3550 Fcons (build_string (".el"), Qnil)); 3550 Fcons (build_string (".el"), Qnil));
3551 default_suffixes = Fcons (empty_string, Qnil); 3551 /* We don't use empty_string because it's not initialized yet. */
3552 default_suffixes = Fcons (build_string (""), Qnil);
3552 staticpro (&default_suffixes); 3553 staticpro (&default_suffixes);
3553 3554
3554 DEFVAR_BOOL ("load-in-progress", &load_in_progress, 3555 DEFVAR_BOOL ("load-in-progress", &load_in_progress,