summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2023-03-05 12:24:39 +0200
committerEli Zaretskii <eliz@gnu.org>2023-03-05 12:24:39 +0200
commit2258ed01f420fd4fe66402169add1db7e01f7d2c (patch)
tree62601dce35fd9f739fc40dde1fee61b1e1425caa
parent9c18af0cfaf2d949d782f6c44c6604b54dbb87a0 (diff)
downloademacs-2258ed01f42.tar.gz
; Minor fix of last change
* lisp/emacs-lisp/comp.el (comp-subr-trampoline-install): Fix wording. (Bug#61880)
-rw-r--r--lisp/emacs-lisp/comp.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el
index 48756caf100..72e9b8e37dc 100644
--- a/lisp/emacs-lisp/comp.el
+++ b/lisp/emacs-lisp/comp.el
@@ -712,7 +712,7 @@ This are essential for the trampoline machinery to work properly.")
(defun comp-subr-trampoline-install (subr-name)
"Make SUBR-NAME effectively advice-able when called from native code."
(when (memq subr-name comp-warn-primitives)
- (warn "Redefining `%s' might breaks trampoline native compilation."
+ (warn "Redefining `%s' might break native compilation of trampolines."
subr-name))
(unless (or (null native-comp-enable-subr-trampolines)
(memq subr-name native-comp-never-optimize-functions)