From: Dave Love Date: Fri, 22 Sep 2000 13:15:52 +0000 (+0000) Subject: (Fstring_as_unibyte, Fstring_as_multibyte): Doc fix. X-Git-Tag: emacs-pretest-21.0.90~1424 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c6cbe5f0dbd852e13588011b34967f65776feb22;p=emacs.git (Fstring_as_unibyte, Fstring_as_multibyte): Doc fix. --- diff --git a/src/ChangeLog b/src/ChangeLog index 7d41c02513e..47227227291 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2000-09-22 Dave Love + + * fns.c (Fstring_as_unibyte, Fstring_as_multibyte): Doc fix. + 2000-09-21 Gerd Moellmann * config.in (NO_RETURN): Define.as `__attribute__((__noreturn__))' diff --git a/src/fns.c b/src/fns.c index c2732e2342f..e46159fd63c 100644 --- 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 a multibyte form), it is converted to the corresponding\n\ +multibyte character of charset `eight-bit-control' or `eight-bit-graphic'.") (string) Lisp_Object string; {