# HG changeset patch # User Kenichi Handa # Date 971227259 0 # Node ID 8acf0e6e062a32c9c1e56aa2d65efe56767f9f7a # Parent ddc96d4efd63d83902a87fc7fd812acf4e58a178 (read_process_output): Fix previous change. Adjust multibyteness of text to insert in a buffer by make_string_unibyte/multibyte instead of Fstring_as_unibyte/multibyte. diff -r ddc96d4efd63 -r 8acf0e6e062a src/process.c --- a/src/process.c Wed Oct 11 01:20:36 2000 +0000 +++ b/src/process.c Wed Oct 11 01:20:59 2000 +0000 @@ -3112,8 +3112,8 @@ 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);