* src/coding.c (produce_chars): Fix a thinko (bug#69966).
This commit is contained in:
parent
3bd7a90dde
commit
8d7a3ed349
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue