aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lread.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/lread.c b/src/lread.c
index f5e7b2fc0fe..05642f011b1 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -6096,13 +6096,12 @@ that are loaded before your customizations are read! */);
6096 load_prefer_newer = 0; 6096 load_prefer_newer = 0;
6097 6097
6098 DEFVAR_BOOL ("load-no-native", load_no_native, 6098 DEFVAR_BOOL ("load-no-native", load_no_native,
6099 doc: /* Non-nil means not to load a native code automatically unless 6099 doc: /* Non-nil means not to load native code unless explicitly requested.
6100explicitly requested.
6101 6100
6102To load explicitly a `.eln' file use (load FILE) where FILE is the 6101To load a `.eln' file when this variable is non-nil, use `(load FILE)'
6103filename of the eln file. 6102where FILE is the filename of the eln file, including the .eln extension.
6104`load-no-native' non-nil will make Emacs not load native code through 6103`load-no-native' non-nil will also make Emacs not load native code
6105`require'. */); 6104through `require'. */);
6106 load_no_native = false; 6105 load_no_native = false;
6107 6106
6108 /* Vsource_directory was initialized in init_lread. */ 6107 /* Vsource_directory was initialized in init_lread. */