diff options
| author | Thien-Thi Nguyen | 2006-05-23 11:23:25 +0000 |
|---|---|---|
| committer | Thien-Thi Nguyen | 2006-05-23 11:23:25 +0000 |
| commit | 5f25dc8145edc4329abd1fd922287ce5dda63d57 (patch) | |
| tree | e1179e43f2b1624b51da3cb21b93ca2551c7d000 | |
| parent | 81264b3846c31bd987a7788fa656dd76345cc8e7 (diff) | |
| download | emacs-5f25dc8145edc4329abd1fd922287ce5dda63d57.tar.gz emacs-5f25dc8145edc4329abd1fd922287ce5dda63d57.zip | |
(bindat-pack): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/emacs-lisp/bindat.el | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6ad38600eae..fa03faa1833 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -3,6 +3,8 @@ | |||
| 3 | * emacs-lisp/ewoc.el (ewoc-delete): New function. | 3 | * emacs-lisp/ewoc.el (ewoc-delete): New function. |
| 4 | (ewoc-filter): Use `ewoc-delete'. | 4 | (ewoc-filter): Use `ewoc-delete'. |
| 5 | 5 | ||
| 6 | * emacs-lisp/bindat.el (bindat-pack): Doc fix. | ||
| 7 | |||
| 6 | 2006-05-22 Stefan Monnier <monnier@iro.umontreal.ca> | 8 | 2006-05-22 Stefan Monnier <monnier@iro.umontreal.ca> |
| 7 | 9 | ||
| 8 | * textmodes/bibtex.el (bibtex-format-entry, bibtex-clean-entry): | 10 | * textmodes/bibtex.el (bibtex-format-entry, bibtex-clean-entry): |
diff --git a/lisp/emacs-lisp/bindat.el b/lisp/emacs-lisp/bindat.el index c6989883a10..823fcf869b6 100644 --- a/lisp/emacs-lisp/bindat.el +++ b/lisp/emacs-lisp/bindat.el | |||
| @@ -581,7 +581,7 @@ e.g. corresponding to STRUCT.FIELD1[INDEX2].FIELD3..." | |||
| 581 | 581 | ||
| 582 | (defun bindat-pack (spec struct &optional raw-data pos) | 582 | (defun bindat-pack (spec struct &optional raw-data pos) |
| 583 | "Return binary data packed according to SPEC for structured data STRUCT. | 583 | "Return binary data packed according to SPEC for structured data STRUCT. |
| 584 | Optional third arg RAW-DATA is a pre-allocated string or vector to unpack into. | 584 | Optional third arg RAW-DATA is a pre-allocated string or vector to pack into. |
| 585 | Optional fourth arg POS is the starting offset into RAW-DATA. | 585 | Optional fourth arg POS is the starting offset into RAW-DATA. |
| 586 | Note: The result is a multibyte string; use `string-make-unibyte' on it | 586 | Note: The result is a multibyte string; use `string-make-unibyte' on it |
| 587 | to make it unibyte if necessary." | 587 | to make it unibyte if necessary." |