]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix error message in last change to bindat.el
authorBasil L. Contovounesios <basil@contovou.net>
Mon, 11 Mar 2024 10:16:20 +0000 (11:16 +0100)
committerEshel Yaron <me@eshelyaron.com>
Mon, 11 Mar 2024 17:15:20 +0000 (18:15 +0100)
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)

lisp/emacs-lisp/bindat.el

index a2161022a89caf54f650ab4b25a154534105d044..ef0ec688dbd14616ea171827e777a79241493328 100644 (file)
    ('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)