Mercurial > emacs
changeset 21716:254857cf599c
(Fstring_make_multibyte): Doc fix.
(Fstring_make_unibyte): Doc fix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 23 Apr 1998 04:03:31 +0000 |
parents | 98c5740d198b |
children | 2967063fe81c |
files | src/fns.c |
diffstat | 1 files changed, 6 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/fns.c Thu Apr 23 04:00:47 1998 +0000 +++ b/src/fns.c Thu Apr 23 04:03:31 1998 +0000 @@ -940,7 +940,9 @@ DEFUN ("string-make-multibyte", Fstring_make_multibyte, Sstring_make_multibyte, 1, 1, 0, - "Return the multibyte equivalent of STRING.") + "Return the multibyte equivalent of STRING.\n\ +The function `unibyte-char-to-multibyte' is used to convert\n\ +each unibyte character to a multibyte character.") (string) Lisp_Object string; { @@ -949,7 +951,9 @@ DEFUN ("string-make-unibyte", Fstring_make_unibyte, Sstring_make_unibyte, 1, 1, 0, - "Return the unibyte equivalent of STRING.") + "Return the unibyte equivalent of STRING.\n\ +Multibyte character codes are converted to unibyte\n\ +by using just the low 8 bits.") (string) Lisp_Object string; {