From 381c3e3b8d550358348a5c85f5eaa418cf89d1de Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Mon, 27 May 2024 11:32:19 +0200 Subject: [PATCH] ; * src/lread.c (load-no-native): Improve docstring. (cherry picked from commit 8283f0ae4ad7648a5fd4988e10b75878f4f87771) --- src/lread.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/lread.c b/src/lread.c index 233f08b0727..f5e7b2fc0fe 100644 --- a/src/lread.c +++ b/src/lread.c @@ -6096,7 +6096,13 @@ that are loaded before your customizations are read! */); load_prefer_newer = 0; DEFVAR_BOOL ("load-no-native", load_no_native, - doc: /* Non-nil means not to load a .eln file when a .elc was requested. */); + doc: /* Non-nil means not to load a native code automatically unless +explicitly requested. + +To load explicitly a `.eln' file use (load FILE) where FILE is the +filename of the eln file. +`load-no-native' non-nil will make Emacs not load native code through +`require'. */); load_no_native = false; /* Vsource_directory was initialized in init_lread. */ -- 2.39.5