aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
authorEli Zaretskii2024-03-23 18:54:39 +0200
committerEli Zaretskii2024-03-23 18:54:39 +0200
commit8d7a3ed3495968fd3e95a6126e7c23e25b7c495f (patch)
tree68c34b60cc360271f62e9d35b03f5d2a0e171b1d /src/coding.c
parent3bd7a90dde201f430d5d79afdc55c1721e6ea8a4 (diff)
downloademacs-8d7a3ed3495968fd3e95a6126e7c23e25b7c495f.tar.gz
emacs-8d7a3ed3495968fd3e95a6126e7c23e25b7c495f.zip
* src/coding.c (produce_chars): Fix a thinko (bug#69966).
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c4
1 files 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,
7186 } 7186 }
7187 else 7187 else
7188 { 7188 {
7189 if (!EQ (coding->src_object, coding->dst_object) 7189 if (!(EQ (coding->src_object, coding->dst_object)
7190 && !NILP (coding->src_object)) 7190 && !NILP (coding->src_object)))
7191 { 7191 {
7192 ptrdiff_t require = coding->src_bytes - coding->dst_bytes; 7192 ptrdiff_t require = coding->src_bytes - coding->dst_bytes;
7193 7193