From 9dffd511461123b4d11dbb58d24da65ca7493105 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 21 Mar 1998 17:51:30 +0000 Subject: [PATCH] (PRINTPREPARE): Use make_string_from_bytes. --- src/print.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/print.c b/src/print.c index 264659288c5..60fc95b234d 100644 --- a/src/print.c +++ b/src/print.c @@ -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 @@ glyph_to_str_cpy (glyphs, str) 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 \ -- 2.39.5