summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2024-03-20 14:27:25 +0200
committerEli Zaretskii <eliz@gnu.org>2024-03-20 14:27:25 +0200
commit1475e3c3b562f7604e538fccbb41f1d66b10663d (patch)
tree5eab8fb1dd5b4c0b3042248a607b3d093080a3c3 /src
parente8d2bc75314262d512d367c270c6d43201ef533f (diff)
downloademacs-1475e3c3b562f7604e538fccbb41f1d66b10663d.tar.gz
; 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.
Diffstat (limited to 'src')
-rw-r--r--src/comp.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/comp.c b/src/comp.c
index 5e4ca643072..99f51e07048 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -5931,10 +5931,11 @@ For internal use. */);
Vcomp_subr_arities_h = CALLN (Fmake_hash_table, QCtest, Qequal);
DEFVAR_BOOL ("comp-sanitizer-active", comp_sanitizer_active,
- doc: /* When non-nil enable sanitizer runtime execution.
-To be effective Lisp Code must have been compiled with
-`comp-sanitizer-emit' non-nil.
-In use for native compiler development and verification only. */);
+ doc: /* If non-nil, enable runtime execution of native-compiler sanitizer.
+For this to be effective, Lisp code must be compiled
+with `comp-sanitizer-emit' non-nil.
+This is intended to be used only for development and
+verification of the native compiler. */);
comp_sanitizer_active = false;
Fprovide (intern_c_string ("native-compile"), Qnil);