aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/coding.c b/src/coding.c
index c04b14ade62..29477c75e5b 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -3764,7 +3764,9 @@ shrink_decoding_region (beg, end, coding, str)
3764 return; 3764 return;
3765 } 3765 }
3766 3766
3767 if (coding->heading_ascii >= 0) 3767 eol_conversion = (coding->eol_type != CODING_EOL_LF);
3768
3769 if ((! eol_conversion) && (coding->heading_ascii >= 0))
3768 /* Detection routine has already found how much we can skip at the 3770 /* Detection routine has already found how much we can skip at the
3769 head. */ 3771 head. */
3770 *beg += coding->heading_ascii; 3772 *beg += coding->heading_ascii;
@@ -3780,8 +3782,6 @@ shrink_decoding_region (beg, end, coding, str)
3780 endp_orig = endp = begp + *end - *beg; 3782 endp_orig = endp = begp + *end - *beg;
3781 } 3783 }
3782 3784
3783 eol_conversion = (coding->eol_type != CODING_EOL_LF);
3784
3785 switch (coding->type) 3785 switch (coding->type)
3786 { 3786 {
3787 case coding_type_emacs_mule: 3787 case coding_type_emacs_mule: