aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
authorAndreas Schwab2000-01-11 10:20:25 +0000
committerAndreas Schwab2000-01-11 10:20:25 +0000
commit4b39528cda82d099a2d47d0abc9b0879c317178d (patch)
tree98e627bf682eddff02444e59317969bc4dc2405f /src/coding.c
parent1d8c59e9d4a76e3e6d49061aa438868b7d25abfe (diff)
downloademacs-4b39528cda82d099a2d47d0abc9b0879c317178d.tar.gz
emacs-4b39528cda82d099a2d47d0abc9b0879c317178d.zip
(code_convert_region): Initialize total_skip.
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c
index 5077fa9ca07..26a234c6522 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -4509,7 +4509,7 @@ code_convert_region (from, from_byte, to, to_byte, coding, encodep, replace)
4509{ 4509{
4510 int len = to - from, len_byte = to_byte - from_byte; 4510 int len = to - from, len_byte = to_byte - from_byte;
4511 int require, inserted, inserted_byte; 4511 int require, inserted, inserted_byte;
4512 int head_skip, tail_skip, total_skip; 4512 int head_skip, tail_skip, total_skip = 0;
4513 Lisp_Object saved_coding_symbol; 4513 Lisp_Object saved_coding_symbol;
4514 int multibyte = !NILP (current_buffer->enable_multibyte_characters); 4514 int multibyte = !NILP (current_buffer->enable_multibyte_characters);
4515 int first = 1; 4515 int first = 1;