]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/lread.c (syms_of_lread) <load-no-native>: Doc fix (bug#70914).
authorEli Zaretskii <eliz@gnu.org>
Mon, 27 May 2024 11:54:01 +0000 (14:54 +0300)
committerEshel Yaron <me@eshelyaron.com>
Mon, 27 May 2024 20:27:34 +0000 (22:27 +0200)
(cherry picked from commit db6599818fa6ca7325c482b4aa1ce564688469ef)

src/lread.c

index f5e7b2fc0fe37a46a3b8438a7f44051743f8bc0c..05642f011b118cc8937b8ce21b34a949a379e5fb 100644 (file)
@@ -6096,13 +6096,12 @@ 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 native code automatically unless
-explicitly requested.
+               doc: /* Non-nil means not to load native code 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'.  */);
+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'.  */);
   load_no_native = false;
 
   /* Vsource_directory was initialized in init_lread.  */