* src/coding.c (produce_chars): Fix a thinko (bug#69966).

This commit is contained in:
Eli Zaretskii 2024-03-23 18:54:39 +02:00
parent 3bd7a90dde
commit 8d7a3ed349

View 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;