diff options
| -rw-r--r-- | lispref/nonascii.texi | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lispref/nonascii.texi b/lispref/nonascii.texi index 2d6f21056e1..fbeedc191c8 100644 --- a/lispref/nonascii.texi +++ b/lispref/nonascii.texi | |||
| @@ -176,9 +176,11 @@ If this is non-@code{nil}, it overrides @code{nonascii-insert-offset}. | |||
| 176 | @defun string-make-unibyte string | 176 | @defun string-make-unibyte string |
| 177 | This function converts the text of @var{string} to unibyte | 177 | This function converts the text of @var{string} to unibyte |
| 178 | representation, if it isn't already, and returns the result. If | 178 | representation, if it isn't already, and returns the result. If |
| 179 | @var{string} is a unibyte string, it is returned unchanged. | 179 | @var{string} is a unibyte string, it is returned unchanged. Multibyte |
| 180 | Multibyte character codes are converted to unibyte | 180 | character codes are converted to unibyte according to |
| 181 | by using just the low 8 bits. | 181 | @code{nonascii-translation-table} or, if that is @code{nil}, using |
| 182 | @code{nonascii-insert-offset}. If the lookup in the translation table | ||
| 183 | fails, this function takes just the low 8 bits of each character. | ||
| 182 | @end defun | 184 | @end defun |
| 183 | 185 | ||
| 184 | @defun string-make-multibyte string | 186 | @defun string-make-multibyte string |