From: Eli Zaretskii Date: Mon, 14 Dec 2015 15:55:02 +0000 (+0200) Subject: ; * src/fileio.c (Finsert_file_contents): Avoid compiler warning. X-Git-Tag: emacs-25.0.90~474 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3842f1f40122df54b55856e5f51e38df21e897eb;p=emacs.git ; * src/fileio.c (Finsert_file_contents): Avoid compiler warning. --- diff --git a/src/fileio.c b/src/fileio.c index 210383ff77a..e18ddb1a7aa 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -4263,12 +4263,14 @@ by calling `format-decode', which see. */) if (CODING_FOR_UNIBYTE (&coding) /* Can't do this if part of the buffer might be preserved. */ && NILP (replace)) - /* Visiting a file with these coding system makes the buffer - unibyte. */ - if (inserted > 0) - bset_enable_multibyte_characters (current_buffer, Qnil); - else - Fset_buffer_multibyte (Qnil); + { + /* Visiting a file with these coding system makes the buffer + unibyte. */ + if (inserted > 0) + bset_enable_multibyte_characters (current_buffer, Qnil); + else + Fset_buffer_multibyte (Qnil); + } } coding.dst_multibyte = ! NILP (BVAR (current_buffer, enable_multibyte_characters));