aboutsummaryrefslogtreecommitdiffstats
path: root/src/fns.c
diff options
context:
space:
mode:
authorEli Zaretskii2002-06-05 17:47:50 +0000
committerEli Zaretskii2002-06-05 17:47:50 +0000
commitf8f2fbf963bfc3f03d7f28f9901431a3fa9282b5 (patch)
tree412ef27a93f134eaa3eef82173919e0ce9aa4e92 /src/fns.c
parent8f9b87b5561d282c9e410da2d920b2cd8875e13f (diff)
downloademacs-f8f2fbf963bfc3f03d7f28f9901431a3fa9282b5.tar.gz
emacs-f8f2fbf963bfc3f03d7f28f9901431a3fa9282b5.zip
(Fstring_make_unibyte): Doc fix.
Diffstat (limited to 'src/fns.c')
-rw-r--r--src/fns.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/fns.c b/src/fns.c
index ad5cd943d62..dd527ddc76b 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -1069,8 +1069,10 @@ each unibyte character to a multibyte character. */)
1069DEFUN ("string-make-unibyte", Fstring_make_unibyte, Sstring_make_unibyte, 1069DEFUN ("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.
1072Multibyte character codes are converted to unibyte 1072Multibyte character codes are converted to unibyte according to
1073by using just the low 8 bits. */) 1073`nonascii-translation-table' or, if that is nil, `nonascii-insert-offset'.
1074If the lookup in the translation table fails, this function takes just
1075the low 8 bits of each character. */)
1074 (string) 1076 (string)
1075 Lisp_Object string; 1077 Lisp_Object string;
1076{ 1078{