diff options
| author | Dave Love | 2000-09-22 13:15:52 +0000 |
|---|---|---|
| committer | Dave Love | 2000-09-22 13:15:52 +0000 |
| commit | c6cbe5f0dbd852e13588011b34967f65776feb22 (patch) | |
| tree | f4473d597790ccdfb3341d14e32815dd43ef1755 /src | |
| parent | 36eb0a91975cd6fd6a873da2120e233b1e2e590f (diff) | |
| download | emacs-c6cbe5f0dbd852e13588011b34967f65776feb22.tar.gz emacs-c6cbe5f0dbd852e13588011b34967f65776feb22.zip | |
(Fstring_as_unibyte, Fstring_as_multibyte): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/fns.c | 9 |
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 @@ | |||
| 1 | 2000-09-22 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * fns.c (Fstring_as_unibyte, Fstring_as_multibyte): Doc fix. | ||
| 4 | |||
| 1 | 2000-09-21 Gerd Moellmann <gerd@gnu.org> | 5 | 2000-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__))' |
| @@ -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\ |
| 1084 | If STRING is unibyte, the result is STRING itself.\n\ | 1084 | If STRING is unibyte, the result is STRING itself.\n\ |
| 1085 | Otherwise it is a newly created string, with no text properties.\n\ | 1085 | Otherwise it is a newly created string, with no text properties.\n\ |
| 1086 | If STRING is multibyte and contains a character of charset `binary',\n\ | 1086 | If STRING is multibyte and contains a character of charset\n\ |
| 1087 | it is converted to the corresponding single byte.") | 1087 | `eight-bit-control' or `eight-bit-graphic', it is converted to the\n\ |
| 1088 | corresponding 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, | |||
| 1109 | If STRING is multibyte, the result is STRING itself.\n\ | 1110 | If STRING is multibyte, the result is STRING itself.\n\ |
| 1110 | Otherwise it is a newly created string, with no text properties.\n\ | 1111 | Otherwise it is a newly created string, with no text properties.\n\ |
| 1111 | If STRING is unibyte and contains an individual 8-bit byte (i.e. not\n\ | 1112 | If STRING is unibyte and contains an individual 8-bit byte (i.e. not\n\ |
| 1112 | part of multibyte form), it is converted to the corresponding\n\ | 1113 | part of a multibyte form), it is converted to the corresponding\n\ |
| 1113 | multibyte character of charset `binary'.") | 1114 | multibyte character of charset `eight-bit-control' or `eight-bit-graphic'.") |
| 1114 | (string) | 1115 | (string) |
| 1115 | Lisp_Object string; | 1116 | Lisp_Object string; |
| 1116 | { | 1117 | { |