1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-10 09:12:15 +00:00

; * lisp/emacs-lisp/bindat.el (bindat-unpack): Fix typo.

This commit is contained in:
Stefan Kangas 2020-10-21 17:31:47 +02:00
parent ffbea0d705
commit 743bd40126

View File

@ -341,7 +341,7 @@
"Return structured data according to SPEC for binary data in RAW.
RAW is a unibyte string or vector.
Optional third arg IDX specifies the starting offset in RAW."
(when (multibyte-string-p bindat-raw)
(when (multibyte-string-p raw)
(error "String is multibyte"))
(setq bindat-raw raw)
(setq bindat-idx (or idx 0))