Changeset 3948

Show
Ignore:
Timestamp:
2005年11月02日 20時21分08秒 (3 years ago)
Author:
miyoshi
Message:

(coding_restore_composition): Sync up with Emacs CVS
HEAD to fix ticket:181.

Files:

Legend:

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

    r3936 r3948  
     12005-11-02  MIYOSHI Masanori  <miyoshi@meadowy.org> 
     2 
     3        * coding.c (coding_restore_composition): Sync up with Emacs CVS 
     4        HEAD to fix ticket:181. 
     5 
    162005-10-29  Kyotaro HORIGUCHI  <horiguti@meadowy.org> 
    27 
  • branches/2.1/src/coding.c

    r3656 r3948  
    53145314          Lisp_Object components; 
    53155315 
     5316          if (data[0] < 0 || i + data[0] > cmp_data->used) 
     5317            /* Invalid composition data.  */ 
     5318            break; 
     5319 
    53165320          if (method == COMPOSITION_RELATIVE) 
    53175321            components = Qnil; 
     
    53245328                  && len % 2 == 0) 
    53255329                len --; 
     5330              if (len < 1) 
     5331                /* Invalid composition data.  */ 
     5332                break; 
    53265333              for (j = 0; j < len; j++) 
    53275334                args[j] = make_number (data[4 + j]);