summaryrefslogtreecommitdiff
path: root/src/lread.c
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2001-10-12 03:22:02 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2001-10-12 03:22:02 +0000
commitddb716ef9746917e842ea6d5a969a206aeddd2bb (patch)
treebc413a28a818490ebfc36d2065afbd350fcc556c /src/lread.c
parente61b9b8743d10f5f0ec9065ae365f8be015ef9d7 (diff)
downloademacs-ddb716ef9746917e842ea6d5a969a206aeddd2bb.tar.gz
(syms_of_lread): Fix init of default_suffixes.
Diffstat (limited to 'src/lread.c')
-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.");
This list should not include the empty string.");
Vload_suffixes = Fcons (build_string (".elc"),
Fcons (build_string (".el"), Qnil));
- default_suffixes = Fcons (empty_string, Qnil);
+ /* We don't use empty_string because it's not initialized yet. */
+ default_suffixes = Fcons (build_string (""), Qnil);
staticpro (&default_suffixes);
DEFVAR_BOOL ("load-in-progress", &load_in_progress,