[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master 79ae7b3c87: Fix typo in byte-compile-lambda warning
From: |
Lars Ingebrigtsen |
Subject: |
master 79ae7b3c87: Fix typo in byte-compile-lambda warning |
Date: |
Fri, 9 Sep 2022 13:16:26 -0400 (EDT) |
branch: master
commit 79ae7b3c874ae9ca77213bfdea13d186ba902961
Author: Lars Ingebrigtsen <larsi@gnus.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>
Fix typo in byte-compile-lambda warning
* lisp/emacs-lisp/bytecomp.el (byte-compile-lambda): Fix typo in
message (bug#57690).
---
lisp/emacs-lisp/bytecomp.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index a16486dc31..48929e62bd 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -3104,8 +3104,8 @@ lambda-expression."
;; Check that the bit after the `interactive' spec is
;; just a list of symbols (i.e., modes).
(unless (seq-every-p #'symbolp (cdr (cdr int)))
- (byte-compile-warn-x int "malformed interactive specc: %s"
- int))
+ (byte-compile-warn-x
+ int "malformed `interactive' specification: %s" int))
(setq command-modes (cdr (cdr int)))
;; If the interactive spec is a call to `list', don't
;; compile it, because `call-interactively' looks at the
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- master 79ae7b3c87: Fix typo in byte-compile-lambda warning,
Lars Ingebrigtsen <=