From: Eli Zaretskii Date: Sat, 23 Mar 2024 16:54:39 +0000 (+0200) Subject: * src/coding.c (produce_chars): Fix a thinko (bug#69966). X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=908fa2e82d50d9de8c3edf436d9d3f7763e4b8ee;p=emacs.git * src/coding.c (produce_chars): Fix a thinko (bug#69966). (cherry picked from commit 8d7a3ed3495968fd3e95a6126e7c23e25b7c495f) --- diff --git a/src/coding.c b/src/coding.c index 3f314b46d5e..c51ceb95475 100644 --- a/src/coding.c +++ b/src/coding.c @@ -7186,8 +7186,8 @@ produce_chars (struct coding_system *coding, Lisp_Object translation_table, } else { - if (!EQ (coding->src_object, coding->dst_object) - && !NILP (coding->src_object)) + if (!(EQ (coding->src_object, coding->dst_object) + && !NILP (coding->src_object))) { ptrdiff_t require = coding->src_bytes - coding->dst_bytes;