comparison src/fns.c @ 45650:dca52f93fdc0

(Fstring_make_unibyte): Doc fix.
author Eli Zaretskii <eliz@gnu.org>
date Wed, 05 Jun 2002 17:47:50 +0000
parents 6adda7388fcc
children 2f81e2382d8d
comparison
equal deleted inserted replaced
45649:e4191efd646a 45650:dca52f93fdc0
1067 } 1067 }
1068 1068
1069 DEFUN ("string-make-unibyte", Fstring_make_unibyte, Sstring_make_unibyte, 1069 DEFUN ("string-make-unibyte", Fstring_make_unibyte, Sstring_make_unibyte,
1070 1, 1, 0, 1070 1, 1, 0,
1071 doc: /* Return the unibyte equivalent of STRING. 1071 doc: /* Return the unibyte equivalent of STRING.
1072 Multibyte character codes are converted to unibyte 1072 Multibyte character codes are converted to unibyte according to
1073 by using just the low 8 bits. */) 1073 `nonascii-translation-table' or, if that is nil, `nonascii-insert-offset'.
1074 If the lookup in the translation table fails, this function takes just
1075 the low 8 bits of each character. */)
1074 (string) 1076 (string)
1075 Lisp_Object string; 1077 Lisp_Object string;
1076 { 1078 {
1077 CHECK_STRING (string); 1079 CHECK_STRING (string);
1078 1080