From fbd98f82dfbf6c7dd6e57986a0d13300f691047b Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 25 Dec 2001 08:16:46 +0000 Subject: [PATCH] (Fbyte_code): Use Fstring_make_unibyte instead of Fstring_as_unibyte. --- src/bytecode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bytecode.c b/src/bytecode.c index c926a3237a6..732b82832c1 100644 --- a/src/bytecode.c +++ b/src/bytecode.c @@ -457,8 +457,8 @@ If the third argument is incorrect, Emacs may crash. */) 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; -- 2.39.2