]> git.eshelyaron.com Git - emacs.git/commitdiff
(setup_coding_system): If eol-type is not yet decided
authorKenichi Handa <handa@m17n.org>
Thu, 13 Apr 2006 06:47:18 +0000 (06:47 +0000)
committerKenichi Handa <handa@m17n.org>
Thu, 13 Apr 2006 06:47:18 +0000 (06:47 +0000)
and system_eol_type is not LF, set CODING_REQUIRE_ENCODING_MASK.
If coding_system is nil, return 0.
(code_convert_region1): Even if coding_system is nil, don't skip
conversion if system_eol_type is not LF.
(code_convert_string1): Likewise.
(code_convert_string_norecord): Likewise.

src/ChangeLog
src/coding.c

index d353e19eabf475e37289d6183fb435e5524a5f31..02d55e0776f3ed6c432ca0110d38445a10899ec2 100644 (file)
@@ -1,3 +1,13 @@
+2006-04-13  Kenichi Handa  <handa@m17n.org>
+
+       * coding.c (setup_coding_system): If eol-type is not yet decided
+       and system_eol_type is not LF, set CODING_REQUIRE_ENCODING_MASK.
+       If coding_system is nil, return 0.
+       (code_convert_region1): Even if coding_system is nil, don't skip
+       conversion if system_eol_type is not LF.
+       (code_convert_string1): Likewise.
+       (code_convert_string_norecord): Likewise.
+
 2006-04-13  Kenichi Handa  <handa@m17n.org>
 
        * coding.c (setup_coding_system): Fix previous change.
index ba121df242e4a63d1dd7488ce41e90847f627c6d..bd96b5cc068a5fec9b7b08dd62d2caa6cdb39f34 100644 (file)
@@ -3607,6 +3607,8 @@ setup_coding_system (coding_system, coding)
     {
       coding->eol_type = CODING_EOL_UNDECIDED;
       coding->common_flags = CODING_REQUIRE_DETECTION_MASK;
+      if (system_eol_type != CODING_EOL_LF)
+       coding->common_flags |= CODING_REQUIRE_ENCODING_MASK;
     }
   else if (XFASTINT (eol_type) == 1)
     {
@@ -3923,8 +3925,11 @@ setup_coding_system (coding_system, coding)
   coding->category_idx = CODING_CATEGORY_IDX_BINARY;
   coding->common_flags = 0;
   coding->eol_type = NILP (coding_system) ? system_eol_type : CODING_EOL_LF;
+  if (coding->eol_type != CODING_EOL_LF)
+    coding->common_flags
+      |= CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK;
   coding->pre_write_conversion = coding->post_read_conversion = Qnil;
-  return -1;
+  return NILP (coding_system) ? 0 : -1;
 }
 
 /* Free memory blocks allocated for storing composition information.  */
@@ -7113,7 +7118,7 @@ code_convert_region1 (start, end, coding_system, encodep)
   from = XFASTINT (start);
   to = XFASTINT (end);
 
-  if (NILP (coding_system))
+  if (NILP (coding_system) && system_eol_type == CODING_EOL_LF)
     return make_number (to - from);
 
   if (setup_coding_system (Fcheck_coding_system (coding_system), &coding) < 0)
@@ -7168,7 +7173,7 @@ code_convert_string1 (string, coding_system, nocopy, encodep)
   CHECK_STRING (string);
   CHECK_SYMBOL (coding_system);
 
-  if (NILP (coding_system))
+  if (NILP (coding_system) && system_eol_type == CODING_EOL_LF)
     return (NILP (nocopy) ? Fcopy_sequence (string) : string);
 
   if (setup_coding_system (Fcheck_coding_system (coding_system), &coding) < 0)
@@ -7227,7 +7232,7 @@ code_convert_string_norecord (string, coding_system, encodep)
   CHECK_STRING (string);
   CHECK_SYMBOL (coding_system);
 
-  if (NILP (coding_system))
+  if (NILP (coding_system) && system_eol_type == CODING_EOL_LF)
     return string;
 
   if (setup_coding_system (Fcheck_coding_system (coding_system), &coding) < 0)