mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-23 05:17:35 +00:00
(syms_of_lread): Fix init of default_suffixes.
This commit is contained in:
parent
e61b9b8743
commit
ddb716ef97
1 changed files with 2 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue