diff options
| author | Eli Zaretskii | 2024-05-27 14:54:01 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2024-05-27 14:54:01 +0300 |
| commit | db6599818fa6ca7325c482b4aa1ce564688469ef (patch) | |
| tree | 3bd5d4de2d66f2fce7a13b31bf2b3d7534cfcdc9 | |
| parent | 435df51d1e7bffd768de15a6c91b7d6f7baa5cbf (diff) | |
| download | emacs-db6599818fa6ca7325c482b4aa1ce564688469ef.tar.gz emacs-db6599818fa6ca7325c482b4aa1ce564688469ef.zip | |
; * src/lread.c (syms_of_lread) <load-no-native>: Doc fix (bug#70914).
| -rw-r--r-- | src/lread.c | 11 |
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. |
| 6100 | explicitly requested. | ||
| 6101 | 6100 | ||
| 6102 | To load explicitly a `.eln' file use (load FILE) where FILE is the | 6101 | To load a `.eln' file when this variable is non-nil, use `(load FILE)' |
| 6103 | filename of the eln file. | 6102 | where 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'. */); | 6104 | through `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. */ |