Mercurial > emacs
changeset 42305:c976f86658b6
(Fbyte_code): Use Fstring_make_unibyte instead of Fstring_as_unibyte.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 25 Dec 2001 08:16:46 +0000 |
parents | 8e051a31d2cd |
children | 58ac31906c29 |
files | src/bytecode.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/bytecode.c Tue Dec 25 08:14:45 2001 +0000 +++ b/src/bytecode.c Tue Dec 25 08:16:46 2001 +0000 @@ -457,8 +457,8 @@ because they produced a raw 8-bit string for byte-code and now such a byte-code string is loaded as multibyte while raw 8-bit characters converted to multibyte form. Thus, now we must - convert them back to the original unibyte form. */ - bytestr = Fstring_as_unibyte (bytestr); + convert them back to the originally intended unibyte form. */ + bytestr = Fstring_make_unibyte (bytestr); bytestr_length = STRING_BYTES (XSTRING (bytestr)); vectorp = XVECTOR (vector)->contents;