diff options
Diffstat (limited to '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 b5d99e34518..d168c255121 100644 --- a/lisp/emacs-lisp/bindat.el +++ b/lisp/emacs-lisp/bindat.el | |||
| @@ -632,7 +632,7 @@ If optional second arg SEP is a string, use that as separator." | |||
| 632 | (bindat-format-vector vect "%d" (if (stringp sep) sep "."))) | 632 | (bindat-format-vector vect "%d" (if (stringp sep) sep "."))) |
| 633 | 633 | ||
| 634 | (defun bindat-vector-to-hex (vect &optional sep) | 634 | (defun bindat-vector-to-hex (vect &optional sep) |
| 635 | "Format vector VECT in hex format separated by dots. | 635 | "Format vector VECT in hex format separated by colons. |
| 636 | If optional second arg SEP is a string, use that as separator." | 636 | If optional second arg SEP is a string, use that as separator." |
| 637 | (bindat-format-vector vect "%02x" (if (stringp sep) sep ":"))) | 637 | (bindat-format-vector vect "%02x" (if (stringp sep) sep ":"))) |
| 638 | 638 | ||