]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fstring_make_multibyte): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Thu, 23 Apr 1998 04:03:31 +0000 (04:03 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 23 Apr 1998 04:03:31 +0000 (04:03 +0000)
(Fstring_make_unibyte): Doc fix.

src/fns.c

index 26443215a547cb32e5a4a07d3ef1124263ee92ee..9c540948c5d2e68a04d1843efa61bd219c2934b3 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -940,7 +940,9 @@ string_make_unibyte (string)
 
 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-multibyte", Fstring_make_multibyte, Sstring_make_multibyte,
 
 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;
 {