From: Robin Templeton Date: Tue, 12 May 2015 18:38:57 +0000 (-0400) Subject: remove ".elc" from load-suffixes X-Git-Url: https://git.hcoop.net/bpt/emacs.git/commitdiff_plain/0b7633df895cc9f3ba8ca19be2109a44b45ad52a remove ".elc" from load-suffixes * src/lread.c (syms_of_lread): Remove ".elc" from load-suffixes. --- 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.