diff options
Diffstat (limited to 'src')
| -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 619f5e1b65f..b5adc3ed864 100644 --- a/src/comp.c +++ b/src/comp.c | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Compile elisp into native code. | 1 | /* Compile elisp into native code. |
| 2 | Copyright (C) 2019-2020 Free Software Foundation, Inc. | 2 | Copyright (C) 2019-2021 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | Author: Andrea Corallo <akrl@sdf.org> | 4 | Author: Andrea Corallo <akrl@sdf.org> |
| 5 | 5 | ||
| @@ -5269,8 +5269,8 @@ The last directory of this list is assumed to be the system one. */); | |||
| 5269 | Vcomp_eln_load_path = Fcons (build_string ("../native-lisp/"), Qnil); | 5269 | Vcomp_eln_load_path = Fcons (build_string ("../native-lisp/"), Qnil); |
| 5270 | 5270 | ||
| 5271 | DEFVAR_BOOL ("comp-enable-subr-trampolines", comp_enable_subr_trampolines, | 5271 | DEFVAR_BOOL ("comp-enable-subr-trampolines", comp_enable_subr_trampolines, |
| 5272 | doc: /* If non-nil, enable trampoline synthesis triggered by `fset'. | 5272 | doc: /* If non-nil enable primitive trampoline synthesis. |
| 5273 | This makes primitives redefinable effectively. */); | 5273 | This makes primitive functions redefinable or advisable effectively. */); |
| 5274 | 5274 | ||
| 5275 | DEFVAR_LISP ("comp-installed-trampolines-h", Vcomp_installed_trampolines_h, | 5275 | DEFVAR_LISP ("comp-installed-trampolines-h", Vcomp_installed_trampolines_h, |
| 5276 | doc: /* Hash table subr-name -> installed trampoline. | 5276 | doc: /* Hash table subr-name -> installed trampoline. |