emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 8d7a3ed3495: * src/coding.c (produce_chars): Fix a thinko (bug#69


From: Eli Zaretskii
Subject: master 8d7a3ed3495: * src/coding.c (produce_chars): Fix a thinko (bug#69966).
Date: Sat, 23 Mar 2024 12:55:02 -0400 (EDT)

branch: master
commit 8d7a3ed3495968fd3e95a6126e7c23e25b7c495f
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>

    * src/coding.c (produce_chars): Fix a thinko (bug#69966).
---
 src/coding.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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;
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]