diff options
Diffstat (limited to 'src')
| -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 | { |