aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2000-09-22 13:15:52 +0000
committerDave Love2000-09-22 13:15:52 +0000
commitc6cbe5f0dbd852e13588011b34967f65776feb22 (patch)
treef4473d597790ccdfb3341d14e32815dd43ef1755 /src
parent36eb0a91975cd6fd6a873da2120e233b1e2e590f (diff)
downloademacs-c6cbe5f0dbd852e13588011b34967f65776feb22.tar.gz
emacs-c6cbe5f0dbd852e13588011b34967f65776feb22.zip
(Fstring_as_unibyte, Fstring_as_multibyte): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/fns.c9
2 files changed, 9 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 7d41c02513e..47227227291 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12000-09-22 Dave Love <fx@gnu.org>
2
3 * fns.c (Fstring_as_unibyte, Fstring_as_multibyte): Doc fix.
4
12000-09-21 Gerd Moellmann <gerd@gnu.org> 52000-09-21 Gerd Moellmann <gerd@gnu.org>
2 6
3 * config.in (NO_RETURN): Define.as `__attribute__((__noreturn__))' 7 * 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,
1083 "Return a unibyte string with the same individual bytes as STRING.\n\ 1083 "Return a unibyte string with the same individual bytes as STRING.\n\
1084If STRING is unibyte, the result is STRING itself.\n\ 1084If STRING is unibyte, the result is STRING itself.\n\
1085Otherwise it is a newly created string, with no text properties.\n\ 1085Otherwise it is a newly created string, with no text properties.\n\
1086If STRING is multibyte and contains a character of charset `binary',\n\ 1086If STRING is multibyte and contains a character of charset\n\
1087it is converted to the corresponding single byte.") 1087`eight-bit-control' or `eight-bit-graphic', it is converted to the\n\
1088corresponding single byte.")
1088 (string) 1089 (string)
1089 Lisp_Object string; 1090 Lisp_Object string;
1090{ 1091{
@@ -1109,8 +1110,8 @@ DEFUN ("string-as-multibyte", Fstring_as_multibyte, Sstring_as_multibyte,
1109If STRING is multibyte, the result is STRING itself.\n\ 1110If STRING is multibyte, the result is STRING itself.\n\
1110Otherwise it is a newly created string, with no text properties.\n\ 1111Otherwise it is a newly created string, with no text properties.\n\
1111If STRING is unibyte and contains an individual 8-bit byte (i.e. not\n\ 1112If STRING is unibyte and contains an individual 8-bit byte (i.e. not\n\
1112part of multibyte form), it is converted to the corresponding\n\ 1113part of a multibyte form), it is converted to the corresponding\n\
1113multibyte character of charset `binary'.") 1114multibyte character of charset `eight-bit-control' or `eight-bit-graphic'.")
1114 (string) 1115 (string)
1115 Lisp_Object string; 1116 Lisp_Object string;
1116{ 1117{