comparison src/fns.c @ 96255:cc315e7d5288

(Fstring_to_unibyte): Fix typo in docstring.
author Kenichi Handa <handa@m17n.org>
date Wed, 25 Jun 2008 02:56:20 +0000
parents a2307295cc84
children 0073930415c3
comparison
equal deleted inserted replaced
96254:dd9a4766432a 96255:cc315e7d5288
1136 doc: /* Return a unibyte string with the same individual chars as STRING. 1136 doc: /* Return a unibyte string with the same individual chars as STRING.
1137 If STRING is unibyte, the result is STRING itself. 1137 If STRING is unibyte, the result is STRING itself.
1138 Otherwise it is a newly created string, with no text properties, 1138 Otherwise it is a newly created string, with no text properties,
1139 where each `eight-bit' character is converted to the corresponding byte. 1139 where each `eight-bit' character is converted to the corresponding byte.
1140 If STRING contains a non-ASCII, non-`eight-bit' character, 1140 If STRING contains a non-ASCII, non-`eight-bit' character,
1141 an error is signaled. 1141 an error is signalled.
1142 If the optional 2nd arg ACCEPT-LATIN-1 is non-nil, a Latin-1 character 1142 If the optional 2nd arg ACCEPT-LATIN-1 is non-nil, a Latin-1 character
1143 doesn't cause an error, but is converted to a byte of same code. */) 1143 doesn't cause an error, but is converted to a byte of same code. */)
1144 (string, accept_latin_1) 1144 (string, accept_latin_1)
1145 Lisp_Object string, accept_latin_1; 1145 Lisp_Object string, accept_latin_1;
1146 { 1146 {