]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/coding.c (produce_chars): Fix a thinko (bug#69966).
authorEli Zaretskii <eliz@gnu.org>
Sat, 23 Mar 2024 16:54:39 +0000 (18:54 +0200)
committerEshel Yaron <me@eshelyaron.com>
Sun, 24 Mar 2024 14:21:12 +0000 (15:21 +0100)
(cherry picked from commit 8d7a3ed3495968fd3e95a6126e7c23e25b7c495f)

src/coding.c

index 3f314b46d5e96ffd4193850d0b9b588e853ce03e..c51ceb95475a5487324e4397e1688bc921aeb970 100644 (file)
@@ -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;