diff options
| author | Stefan Kangas | 2021-12-01 06:30:22 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2021-12-01 06:30:22 +0100 |
| commit | 93d9bc09f4167100664ac5a3a1cd686e6d7be9a8 (patch) | |
| tree | af395ae58f0bf8c764be5a995657728927305571 /src/comp.c | |
| parent | 6adf37b4a5a954ac981c2f89ea2c343658f532c2 (diff) | |
| parent | e632b83a281fedf652d254ceaa210438301e2513 (diff) | |
| download | emacs-93d9bc09f4167100664ac5a3a1cd686e6d7be9a8.tar.gz emacs-93d9bc09f4167100664ac5a3a1cd686e6d7be9a8.zip | |
Merge from origin/emacs-28
e632b83a28 Update authors.el for Emacs 28
e9fdb11903 ; * ChangeLog.3: Some additional fixes.
8fa4749df1 ; * ChangeLog.3: Filename fixes.
ea5a90b4f4 * lisp/repeat.el: Fix long-standing problem when a random ...
ef4954b69c * lisp/repeat.el (repeat-keep-prefix): Change default to nil.
6d5886e780 * test/lisp/repeat-tests.el (repeat-tests-call-b): Test fo...
9e16c6a96d ; * src/comp.c (syms_of_comp) <comp-no-native-file-h>: Doc...
9aa8fd6e62 * src/callint.c (Fcall_interactively): Fix inhibit_mouse_e...
70c229b1fc Fix regression in gdb-frame-handler
cd9dd26d24 Format and index concept 'predicate' in ELisp Intro
ab291656d0 ; * ChangeLog.3: Fix typos.
354f6c5609 ; * ChangeLog.3: Formatting fixes.
6192525a96 ; make change-history-commit
Diffstat (limited to 'src/comp.c')
| -rw-r--r-- | src/comp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/comp.c b/src/comp.c index 486b35f6814..7bb160e4f0a 100644 --- a/src/comp.c +++ b/src/comp.c | |||
| @@ -5513,9 +5513,9 @@ protect the trampolines against GC. */); | |||
| 5513 | Vcomp_installed_trampolines_h = CALLN (Fmake_hash_table); | 5513 | Vcomp_installed_trampolines_h = CALLN (Fmake_hash_table); |
| 5514 | 5514 | ||
| 5515 | DEFVAR_LISP ("comp-no-native-file-h", V_comp_no_native_file_h, | 5515 | DEFVAR_LISP ("comp-no-native-file-h", V_comp_no_native_file_h, |
| 5516 | doc: /* Files for which no deferred compilation has to | 5516 | doc: /* Files for which no deferred compilation has to be performed. |
| 5517 | be performed because the bytecode version was explicitly requested by | 5517 | These files' compilation should not be deferred because the bytecode |
| 5518 | the user during load. | 5518 | version was explicitly requested by the user during load. |
| 5519 | For internal use. */); | 5519 | For internal use. */); |
| 5520 | V_comp_no_native_file_h = CALLN (Fmake_hash_table, QCtest, Qequal); | 5520 | V_comp_no_native_file_h = CALLN (Fmake_hash_table, QCtest, Qequal); |
| 5521 | 5521 | ||