aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/coding.c b/src/coding.c
index 17e342298b9..64826ae16b9 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -288,8 +288,8 @@ encode_coding_XXX (struct coding_system *coding)
288#include <setjmp.h> 288#include <setjmp.h>
289 289
290#include "lisp.h" 290#include "lisp.h"
291#include "buffer.h"
292#include "character.h" 291#include "character.h"
292#include "buffer.h"
293#include "charset.h" 293#include "charset.h"
294#include "ccl.h" 294#include "ccl.h"
295#include "composite.h" 295#include "composite.h"
@@ -6765,7 +6765,8 @@ produce_chars (struct coding_system *coding, Lisp_Object translation_table,
6765 6765
6766 while (buf < buf_end) 6766 while (buf < buf_end)
6767 { 6767 {
6768 int c = *buf, i; 6768 int c = *buf;
6769 ptrdiff_t i;
6769 6770
6770 if (c >= 0) 6771 if (c >= 0)
6771 { 6772 {