diff options
| author | Eli Zaretskii | 2002-06-05 17:52:03 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2002-06-05 17:52:03 +0000 |
| commit | 38eee91c9813f3ec31cc8624cbeabf024467069a (patch) | |
| tree | d2ecdb5f5c57fa927c0f268ae8b9600f81914c07 /lispref | |
| parent | 4ddc38a16917188e6e8ba9dc5f726d86920894ed (diff) | |
| download | emacs-38eee91c9813f3ec31cc8624cbeabf024467069a.tar.gz emacs-38eee91c9813f3ec31cc8624cbeabf024467069a.zip | |
(Converting Representations): Update the description of what
string-make-unibyte does.
Diffstat (limited to 'lispref')
| -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 |