aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c
index 5dbaf96840a..85a50dad91f 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -7266,7 +7266,8 @@ produce_charset (struct coding_system *coding, int *charbuf, ptrdiff_t pos)
7266} 7266}
7267 7267
7268#define MAX_CHARBUF_SIZE 0x4000 7268#define MAX_CHARBUF_SIZE 0x4000
7269#define MIN_CHARBUF_SIZE 0x10 7269/* emacs-mule decoding requires more than 16 bytes. */
7270#define MIN_CHARBUF_SIZE 0x20
7270 7271
7271#define ALLOC_CONVERSION_WORK_AREA(coding, size) \ 7272#define ALLOC_CONVERSION_WORK_AREA(coding, size) \
7272 do { \ 7273 do { \