diff options
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/coding.c b/src/coding.c index 7d199567fd0..9d75ef93102 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -8015,12 +8015,12 @@ decode_coding_object (struct coding_system *coding, | |||
| 8015 | Lisp_Object dst_object) | 8015 | Lisp_Object dst_object) |
| 8016 | { | 8016 | { |
| 8017 | ptrdiff_t count = SPECPDL_INDEX (); | 8017 | ptrdiff_t count = SPECPDL_INDEX (); |
| 8018 | unsigned char *destination IF_LINT (= NULL); | 8018 | unsigned char *destination; |
| 8019 | ptrdiff_t dst_bytes IF_LINT (= 0); | 8019 | ptrdiff_t dst_bytes; |
| 8020 | ptrdiff_t chars = to - from; | 8020 | ptrdiff_t chars = to - from; |
| 8021 | ptrdiff_t bytes = to_byte - from_byte; | 8021 | ptrdiff_t bytes = to_byte - from_byte; |
| 8022 | Lisp_Object attrs; | 8022 | Lisp_Object attrs; |
| 8023 | ptrdiff_t saved_pt = -1, saved_pt_byte IF_LINT (= 0); | 8023 | ptrdiff_t saved_pt = -1, saved_pt_byte; |
| 8024 | bool need_marker_adjustment = 0; | 8024 | bool need_marker_adjustment = 0; |
| 8025 | Lisp_Object old_deactivate_mark; | 8025 | Lisp_Object old_deactivate_mark; |
| 8026 | 8026 | ||
| @@ -8198,7 +8198,7 @@ encode_coding_object (struct coding_system *coding, | |||
| 8198 | ptrdiff_t chars = to - from; | 8198 | ptrdiff_t chars = to - from; |
| 8199 | ptrdiff_t bytes = to_byte - from_byte; | 8199 | ptrdiff_t bytes = to_byte - from_byte; |
| 8200 | Lisp_Object attrs; | 8200 | Lisp_Object attrs; |
| 8201 | ptrdiff_t saved_pt = -1, saved_pt_byte IF_LINT (= 0); | 8201 | ptrdiff_t saved_pt = -1, saved_pt_byte; |
| 8202 | bool need_marker_adjustment = 0; | 8202 | bool need_marker_adjustment = 0; |
| 8203 | bool kill_src_buffer = 0; | 8203 | bool kill_src_buffer = 0; |
| 8204 | Lisp_Object old_deactivate_mark; | 8204 | Lisp_Object old_deactivate_mark; |