aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Templeton <[email protected]>2015-05-12 14:38:57 -0400
committerRobin Templeton <[email protected]>2015-05-12 19:18:04 -0400
commit0b7633df895cc9f3ba8ca19be2109a44b45ad52a (patch)
treeb62a28c298dc32fe469279308cd14888c707df1b
parentba7762b393919972d877b252fe3e1f660a506f6b (diff)
remove ".elc" from load-suffixes
* src/lread.c (syms_of_lread): Remove ".elc" from load-suffixes.
-rw-r--r--src/lread.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lread.c b/src/lread.c
index 2d81c35c93..5628ee5e2d 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -4434,8 +4434,7 @@ Initialized during startup as described in Info node `(elisp)Library Search'. *
This list should not include the empty string.
`load' and related functions try to append these suffixes, in order,
to the specified file name if a Lisp suffix is allowed or required. */);
- Vload_suffixes = list2 (build_pure_c_string (".elc"),
- build_pure_c_string (".el"));
+ Vload_suffixes = list1 (build_pure_c_string (".el"));
DEFVAR_LISP ("load-file-rep-suffixes", Vload_file_rep_suffixes,
doc: /* List of suffixes that indicate representations of \
the same file.