(shrink_decoding_region): No short cut by
authorKenichi Handa <handa@m17n.org>
Thu, 21 May 1998 01:48:52 +0000 (01:48 +0000)
committerKenichi Handa <handa@m17n.org>
Thu, 21 May 1998 01:48:52 +0000 (01:48 +0000)
coding->heading_ascii if eol conversion is necessary.

src/coding.c

index c04b14a..29477c7 100644 (file)
@@ -3764,7 +3764,9 @@ shrink_decoding_region (beg, end, coding, str)
       return;
     }
 
-  if (coding->heading_ascii >= 0)
+  eol_conversion = (coding->eol_type != CODING_EOL_LF);
+
+  if ((! eol_conversion) && (coding->heading_ascii >= 0))
     /* Detection routine has already found how much we can skip at the
        head.  */
     *beg += coding->heading_ascii;
@@ -3780,8 +3782,6 @@ shrink_decoding_region (beg, end, coding, str)
       endp_orig = endp = begp + *end - *beg;
     }
 
-  eol_conversion = (coding->eol_type != CODING_EOL_LF);
-
   switch (coding->type)
     {
     case coding_type_emacs_mule: