diff options
| author | Eli Zaretskii | 2024-03-23 18:54:39 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2024-03-23 18:54:39 +0200 |
| commit | 8d7a3ed3495968fd3e95a6126e7c23e25b7c495f (patch) | |
| tree | 68c34b60cc360271f62e9d35b03f5d2a0e171b1d /src/coding.c | |
| parent | 3bd7a90dde201f430d5d79afdc55c1721e6ea8a4 (diff) | |
| download | emacs-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.c | 4 |
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 | ||