]> git.eshelyaron.com Git - emacs.git/commitdiff
(read_process_output): Fix previous change. Adjust multibyteness of
authorKenichi Handa <handa@m17n.org>
Wed, 11 Oct 2000 01:23:36 +0000 (01:23 +0000)
committerKenichi Handa <handa@m17n.org>
Wed, 11 Oct 2000 01:23:36 +0000 (01:23 +0000)
text to insert in a buffer by make_string_unibyte/multibyte instead of
Fstring_as_unibyte/multibyte.

src/ChangeLog
src/process.c

index b460b5319ca101896b1fb2eab375a7c34b85d896..79c00ad222cb7deb380d6cb633f87cd1717d3fd5 100644 (file)
@@ -2,7 +2,7 @@
 
        * process.c (read_process_output): Fix previous change.  Adjust
        multibyteness of text to insert in a buffer by
-       make_string_unibyte/multibyte instead of
+       string_make_unibyte/multibyte instead of
        Fstring_as_unibyte/multibyte.
 
 2000-10-10  Andreas Schwab  <schwab@suse.de>
index 48c960f9a43f841a58d5ef781b7e2c469c457212..edae85f95f57ee08ed380e0c477a0c66b7f1a25e 100644 (file)
@@ -3112,8 +3112,8 @@ read_process_output (proc, channel)
       if (NILP (current_buffer->enable_multibyte_characters)
          != ! STRING_MULTIBYTE (text))
        text = (STRING_MULTIBYTE (text)
-               ? Fstring_as_unibyte (text)
-               : Fstring_as_multibyte (text));
+               ? string_make_unibyte (text)
+               : string_make_multibyte (text));
       nbytes = STRING_BYTES (XSTRING (text));
       nchars = XSTRING (text)->size;
       insert_from_string_before_markers (text, 0, 0, nchars, nbytes, 0);