diff options
| author | Kim F. Storm | 2002-10-27 21:58:18 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2002-10-27 21:58:18 +0000 |
| commit | 13b563f53c6c3a4238d0c665a9d87edcf6d70bb7 (patch) | |
| tree | 448ebd76179e9f45d2e06f5f6ceb774bd8bb4cc8 | |
| parent | d1a0acacb3fa88cb75a0367fc6b8c1e56779e5f9 (diff) | |
| download | emacs-13b563f53c6c3a4238d0c665a9d87edcf6d70bb7.tar.gz emacs-13b563f53c6c3a4238d0c665a9d87edcf6d70bb7.zip | |
Fixed typo in docstring.
| -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 fcbe6882e92..46040da8d92 100644 --- a/lisp/emacs-lisp/bindat.el +++ b/lisp/emacs-lisp/bindat.el | |||
| @@ -575,7 +575,7 @@ e.g. corresponding to STRUCT.FIELD1[INDEX2].FIELD3..." | |||
| 575 | )))))) | 575 | )))))) |
| 576 | 576 | ||
| 577 | (defun bindat-pack (spec struct &optional raw-data pos) | 577 | (defun bindat-pack (spec struct &optional raw-data pos) |
| 578 | "Return binary data packed accoring to SPEC for structured data STRUCT. | 578 | "Return binary data packed according to SPEC for structured data STRUCT. |
| 579 | Optional third arg RAW-DATA is a pre-allocated string or vector to unpack into. | 579 | Optional third arg RAW-DATA is a pre-allocated string or vector to unpack into. |
| 580 | Optional fourth arg POS is the starting offset into RAW-DATA. | 580 | Optional fourth arg POS is the starting offset into RAW-DATA. |
| 581 | Note: The result is a multibyte string; use `string-make-unibyte' on it | 581 | Note: The result is a multibyte string; use `string-make-unibyte' on it |