Mercurial > emacs
comparison src/coding.c @ 27271:7b495b311f18
(code_convert_region): Initialize total_skip.
| author | Andreas Schwab <schwab@suse.de> |
|---|---|
| date | Tue, 11 Jan 2000 10:20:25 +0000 |
| parents | a8f4cebb614d |
| children | c2e0998057f9 |
comparison
equal
deleted
inserted
replaced
| 27270:5a4e13447b47 | 27271:7b495b311f18 |
|---|---|
| 4507 int from, from_byte, to, to_byte, encodep, replace; | 4507 int from, from_byte, to, to_byte, encodep, replace; |
| 4508 struct coding_system *coding; | 4508 struct coding_system *coding; |
| 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; |
| 4516 int fake_multibyte = 0; | 4516 int fake_multibyte = 0; |
| 4517 unsigned char *src, *dst; | 4517 unsigned char *src, *dst; |
