mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
; Fix doc strings of recent changes
* src/comp.c (syms_of_comp) <comp-sanitizer-active>: * lisp/emacs-lisp/comp.el (comp-sanitizer-emit): Doc fixes.
This commit is contained in:
parent
e8d2bc7531
commit
1475e3c3b5
2 changed files with 7 additions and 5 deletions
|
|
@ -3019,7 +3019,8 @@ These are substituted with a normal `set' op."
|
||||||
|
|
||||||
(defvar comp-sanitizer-emit nil
|
(defvar comp-sanitizer-emit nil
|
||||||
"Gates the sanitizer pass.
|
"Gates the sanitizer pass.
|
||||||
In use for native compiler development and verification only.")
|
This is intended to be used only for development and verification of
|
||||||
|
the native compiler.")
|
||||||
|
|
||||||
(defun comp--sanitizer (_)
|
(defun comp--sanitizer (_)
|
||||||
(when comp-sanitizer-emit
|
(when comp-sanitizer-emit
|
||||||
|
|
|
||||||
|
|
@ -5931,10 +5931,11 @@ For internal use. */);
|
||||||
Vcomp_subr_arities_h = CALLN (Fmake_hash_table, QCtest, Qequal);
|
Vcomp_subr_arities_h = CALLN (Fmake_hash_table, QCtest, Qequal);
|
||||||
|
|
||||||
DEFVAR_BOOL ("comp-sanitizer-active", comp_sanitizer_active,
|
DEFVAR_BOOL ("comp-sanitizer-active", comp_sanitizer_active,
|
||||||
doc: /* When non-nil enable sanitizer runtime execution.
|
doc: /* If non-nil, enable runtime execution of native-compiler sanitizer.
|
||||||
To be effective Lisp Code must have been compiled with
|
For this to be effective, Lisp code must be compiled
|
||||||
`comp-sanitizer-emit' non-nil.
|
with `comp-sanitizer-emit' non-nil.
|
||||||
In use for native compiler development and verification only. */);
|
This is intended to be used only for development and
|
||||||
|
verification of the native compiler. */);
|
||||||
comp_sanitizer_active = false;
|
comp_sanitizer_active = false;
|
||||||
|
|
||||||
Fprovide (intern_c_string ("native-compile"), Qnil);
|
Fprovide (intern_c_string ("native-compile"), Qnil);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue