]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fbyte_code): Use Fstring_make_unibyte instead of Fstring_as_unibyte.
authorRichard M. Stallman <rms@gnu.org>
Tue, 25 Dec 2001 08:16:46 +0000 (08:16 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 25 Dec 2001 08:16:46 +0000 (08:16 +0000)
src/bytecode.c

index c926a3237a61fd8d3eb2c73573a3dd7f63a1ba8d..732b82832c1d10030ae471f0538741a613022deb 100644 (file)
@@ -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;