From: Basil L. Contovounesios Date: Mon, 11 Mar 2024 10:16:20 +0000 (+0100) Subject: ; Fix error message in last change to bindat.el X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=847594faf4ac0470a8948807afe63533c8bd2438;p=emacs.git ; Fix error message in last change to bindat.el Remove trailing period as per "(elisp) Error Symbols". Relates to the following discussion: https://lists.gnu.org/r/emacs-devel/2023-10/msg00473.html https://lists.gnu.org/r/emacs-devel/2024-03/msg00340.html (cherry picked from commit 75cfc6c73faa1561018b1212156964a7919c69fe) --- diff --git a/lisp/emacs-lisp/bindat.el b/lisp/emacs-lisp/bindat.el index a2161022a89..ef0ec688dbd 100644 --- a/lisp/emacs-lisp/bindat.el +++ b/lisp/emacs-lisp/bindat.el @@ -205,7 +205,7 @@ ('strz (bindat--unpack-strz len)) ('vec (when (> len (length bindat-raw)) - (error "Vector length %d is greater than raw data length %d." + (error "Vector length %d is greater than raw data length %d" len (length bindat-raw))) (let ((v (make-vector len 0)) (vlen 1)) (if (consp vectype)