[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master 75cfc6c73fa: ; Fix error message in last change to bindat.el
From: |
Basil L. Contovounesios |
Subject: |
master 75cfc6c73fa: ; Fix error message in last change to bindat.el |
Date: |
Mon, 11 Mar 2024 06:20:25 -0400 (EDT) |
branch: master
commit 75cfc6c73faa1561018b1212156964a7919c69fe
Author: Basil L. Contovounesios <basil@contovou.net>
Commit: Basil L. Contovounesios <basil@contovou.net>
; 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
---
lisp/emacs-lisp/bindat.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- master 75cfc6c73fa: ; Fix error message in last change to bindat.el,
Basil L. Contovounesios <=