Changeset 4060

Show
Ignore:
Timestamp:
04/23/06 10:08:14 (3 years ago)
Author:
miyoshi
Message:

Undo the last merge temporarily. Refer to ticket:296.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/ChangeLog.Meadow

    r4058 r4060  
     12006-04-23  MIYOSHI Masanori  <miyoshi@meadowy.org> 
     2 
     3        * coding.c: Undo the last merge temporarily.  Refer to ticket:296. 
     4 
    152006-04-16  MIYOSHI Masanori  <miyoshi@meadowy.org> 
    26 
  • trunk/src/coding.c

    r4058 r4060  
    736736        else                                                    \ 
    737737          {                                                     \ 
    738             c -= 0x80;                                                \ 
     738            c -= 0xA0;                                                \ 
    739739            *p++ = c;                                           \ 
    740740          }                                                     \ 
     
    36083608      coding->eol_type = CODING_EOL_UNDECIDED; 
    36093609      coding->common_flags = CODING_REQUIRE_DETECTION_MASK; 
    3610       if (system_eol_type != CODING_EOL_LF) 
    3611         coding->common_flags |= CODING_REQUIRE_ENCODING_MASK; 
    36123610    } 
    36133611  else if (XFASTINT (eol_type) == 1) 
     
    39253923  coding->category_idx = CODING_CATEGORY_IDX_BINARY; 
    39263924  coding->common_flags = 0; 
    3927   coding->eol_type = NILP (coding_system) ? system_eol_type : CODING_EOL_LF; 
    3928   if (coding->eol_type != CODING_EOL_LF) 
    3929     coding->common_flags 
    3930       |= CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK; 
     3925  coding->eol_type = CODING_EOL_LF; 
    39313926  coding->pre_write_conversion = coding->post_read_conversion = Qnil; 
    3932   return NILP (coding_system) ? 0 : -1; 
     3927  return -1; 
    39333928} 
    39343929 
     
    50044999  coding->errors = 0; 
    50055000  coding->result = CODING_FINISH_NORMAL; 
    5006   if (coding->eol_type == CODING_EOL_UNDECIDED) 
    5007     coding->eol_type = system_eol_type; 
    50085001 
    50095002  switch (coding->type) 
     
    52625255      || coding->eol_type == CODING_EOL_CRLF 
    52635256      || coding->eol_type == CODING_EOL_CR 
    5264       || (coding->eol_type == CODING_EOL_UNDECIDED 
    5265           && system_eol_type != CODING_EOL_LF) 
    52665257      || (coding->cmp_data && coding->cmp_data->used > 0)) 
    52675258    { 
     
    71197110  to = XFASTINT (end); 
    71207111 
    7121   if (NILP (coding_system) && system_eol_type == CODING_EOL_LF
     7112  if (NILP (coding_system)
    71227113    return make_number (to - from); 
    71237114 
     
    71747165  CHECK_SYMBOL (coding_system); 
    71757166 
    7176   if (NILP (coding_system) && system_eol_type == CODING_EOL_LF
     7167  if (NILP (coding_system)
    71777168    return (NILP (nocopy) ? Fcopy_sequence (string) : string); 
    71787169 
     
    72337224  CHECK_SYMBOL (coding_system); 
    72347225 
    7235   if (NILP (coding_system) && system_eol_type == CODING_EOL_LF
     7226  if (NILP (coding_system)
    72367227    return string; 
    72377228