diff options
| author | Eli Zaretskii | 2002-06-05 17:47:50 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2002-06-05 17:47:50 +0000 |
| commit | f8f2fbf963bfc3f03d7f28f9901431a3fa9282b5 (patch) | |
| tree | 412ef27a93f134eaa3eef82173919e0ce9aa4e92 /src/fns.c | |
| parent | 8f9b87b5561d282c9e410da2d920b2cd8875e13f (diff) | |
| download | emacs-f8f2fbf963bfc3f03d7f28f9901431a3fa9282b5.tar.gz emacs-f8f2fbf963bfc3f03d7f28f9901431a3fa9282b5.zip | |
(Fstring_make_unibyte): Doc fix.
Diffstat (limited to 'src/fns.c')
| -rw-r--r-- | src/fns.c | 6 |
1 files changed, 4 insertions, 2 deletions
| @@ -1069,8 +1069,10 @@ each unibyte character to a multibyte character. */) | |||
| 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 | { |