; 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:
parent
2d61ebb505
commit
75cfc6c73f
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue