# HG changeset patch # User Richard M. Stallman # Date 890502690 0 # Node ID c6212caa6fe2728cbebc0161105dcaea545b39e1 # Parent f90a51f05bee5807e77fa50c0e2e70e378c3b88a (PRINTPREPARE): Use make_string_from_bytes. diff -r f90a51f05bee -r c6212caa6fe2 src/print.c --- a/src/print.c Sat Mar 21 17:50:30 1998 +0000 +++ b/src/print.c Sat Mar 21 17:51:30 1998 +0000 @@ -1,5 +1,6 @@ /* Lisp object printing and output streams. - Copyright (C) 1985, 86, 88, 93, 94, 95, 97, 98 Free Software Foundation, Inc. + Copyright (C) 1985, 86, 88, 93, 94, 95, 97, 1998 + Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -257,9 +258,9 @@ Lisp_Object string; \ if (print_buffer != 0) \ { \ - string = make_multibyte_string (print_buffer, \ - print_buffer_pos, \ - print_buffer_pos_byte); \ + string = make_string_from_bytes (print_buffer, \ + print_buffer_pos, \ + print_buffer_pos_byte); \ record_unwind_protect (print_unwind, string); \ } \ else \