]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fstring_as_unibyte, Fstring_as_multibyte): Doc fix.
authorDave Love <fx@gnu.org>
Fri, 22 Sep 2000 13:15:52 +0000 (13:15 +0000)
committerDave Love <fx@gnu.org>
Fri, 22 Sep 2000 13:15:52 +0000 (13:15 +0000)
src/ChangeLog
src/fns.c

index 7d41c02513ea770144b20ff63153fed53e881ece..472272272918ed23a85ef835d63982bffff888c4 100644 (file)
@@ -1,3 +1,7 @@
+2000-09-22  Dave Love  <fx@gnu.org>
+
+       * fns.c (Fstring_as_unibyte, Fstring_as_multibyte): Doc fix.
+
 2000-09-21  Gerd Moellmann  <gerd@gnu.org>
 
        * config.in (NO_RETURN): Define.as `__attribute__((__noreturn__))'
index c2732e2342f04e61eb0155ef9991c527b820a98f..e46159fd63ccffa226d1b568282064b31fe73366 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -1083,8 +1083,9 @@ DEFUN ("string-as-unibyte", Fstring_as_unibyte, Sstring_as_unibyte,
   "Return a unibyte string with the same individual bytes as STRING.\n\
 If STRING is unibyte, the result is STRING itself.\n\
 Otherwise it is a newly created string, with no text properties.\n\
-If STRING is multibyte and contains a character of charset `binary',\n\
-it is converted to the corresponding single byte.")
+If STRING is multibyte and contains a character of charset\n\
+`eight-bit-control' or `eight-bit-graphic', it is converted to the\n\
+corresponding single byte.")
   (string)
      Lisp_Object string;
 {
@@ -1109,8 +1110,8 @@ DEFUN ("string-as-multibyte", Fstring_as_multibyte, Sstring_as_multibyte,
 If STRING is multibyte, the result is STRING itself.\n\
 Otherwise it is a newly created string, with no text properties.\n\
 If STRING is unibyte and contains an individual 8-bit byte (i.e. not\n\
-part of multibyte form), it is converted to the corresponding\n\
-multibyte character of charset `binary'.")
+part of multibyte form), it is converted to the corresponding\n\
+multibyte character of charset `eight-bit-control' or `eight-bit-graphic'.")
   (string)
      Lisp_Object string;
 {