From b3277c7d3913ccedfac36c27ab657901e4f131b4 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 11 Dec 2015 10:25:37 +0200 Subject: [PATCH] Fix setting buffer unibyte when reading from a device * src/fileio.c (Finsert_file_contents): Call Fset_buffer_multibyte to make a (possibly non-empty) buffer unibyte. (Bug#22096) --- src/fileio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fileio.c b/src/fileio.c index 6cda1e39eed..8e44eb0d539 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -4265,7 +4265,7 @@ by calling `format-decode', which see. */) && NILP (replace)) /* Visiting a file with these coding system makes the buffer unibyte. */ - bset_enable_multibyte_characters (current_buffer, Qnil); + Fset_buffer_multibyte (Qnil); } coding.dst_multibyte = ! NILP (BVAR (current_buffer, enable_multibyte_characters)); -- 2.39.5