Variable: load-no-native
load-no-native is a variable defined in lread.c.
Value
nil
Documentation
Non-nil means not to load native code unless explicitly requested.
To load a .eln file when this variable is non-nil, use (load FILE)
where FILE is the filename of the eln file, including the .eln extension.
load-no-native non-nil will also make Emacs not load native code
through require.
Source Code
// Defined in /usr/src/emacs/src/lread.c
DEFVAR_BOOL ("load-no-native", load_no_native,
doc: /* Non-nil means not to load native code unless explicitly requested.
To load a `.eln' file when this variable is non-nil, use `(load FILE)'
where FILE is the filename of the eln file, including the .eln extension.
`load-no-native' non-nil will also make Emacs not load native code
through `require'. */);