; 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
This commit is contained in:
Basil L. Contovounesios 2024-03-11 11:16:20 +01:00
parent 2d61ebb505
commit 75cfc6c73f

View file

@ -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)