diff src/bytecode.c @ 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 cdfd4d09b79a
children 791ec0f30e9e
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;