diff options
author | Stefan Kangas <stefan@marxist.se> | 2020-10-21 17:31:47 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2020-10-21 17:31:47 +0200 |
commit | 743bd40126af56ef2b388d05e53758237b77019b (patch) | |
tree | fbd966d010e8d5038da07f1847251d5fac907fa6 /lisp/emacs-lisp | |
parent | ffbea0d705a278b3c268b7cd44ed0484be8b89c1 (diff) | |
download | emacs-743bd40126af56ef2b388d05e53758237b77019b.tar.gz emacs-743bd40126af56ef2b388d05e53758237b77019b.tar.bz2 emacs-743bd40126af56ef2b388d05e53758237b77019b.zip |
; * lisp/emacs-lisp/bindat.el (bindat-unpack): Fix typo.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bindat.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bindat.el b/lisp/emacs-lisp/bindat.el index f6f8b7c8ccc..95581c40a46 100644 --- a/lisp/emacs-lisp/bindat.el +++ b/lisp/emacs-lisp/bindat.el @@ -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)) |