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 0c2836c19f6..0596d16bf46 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -5266,11 +5266,12 @@ encode_coding_raw_text (struct coding_system *coding)
5266 unsigned char str[MAX_MULTIBYTE_LENGTH], *p0 = str, *p1 = str; 5266 unsigned char str[MAX_MULTIBYTE_LENGTH], *p0 = str, *p1 = str;
5267 5267
5268 CHAR_STRING_ADVANCE (c, p1); 5268 CHAR_STRING_ADVANCE (c, p1);
5269 while (p0 < p1) 5269 do
5270 { 5270 {
5271 EMIT_ONE_BYTE (*p0); 5271 EMIT_ONE_BYTE (*p0);
5272 p0++; 5272 p0++;
5273 } 5273 }
5274 while (p0 < p1);
5274 } 5275 }
5275 } 5276 }
5276 else 5277 else