Variable: load-suffixes
load-suffixes is a variable defined in lread.c.
Value
(".so" ".elc" ".el")
Documentation
List of suffixes for Emacs Lisp files and dynamic modules.
This list includes suffixes for both compiled and source Emacs Lisp files.
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 suffix is allowed or required.
Probably introduced at or before Emacs version 22.1.
Source Code
// Defined in /usr/src/emacs/src/lread.c
DEFVAR_LISP ("load-suffixes", Vload_suffixes,
doc: /* List of suffixes for Emacs Lisp files and dynamic modules.
This list includes suffixes for both compiled and source Emacs Lisp files.
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 suffix is allowed or required. */);