Changeset 3948
- Timestamp:
- 2005年11月02日 20時21分08秒 (3 years ago)
- Files:
-
- branches/2.1/src/ChangeLog.Meadow (modified) (1 diff)
- branches/2.1/src/coding.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.1/src/ChangeLog.Meadow
r3936 r3948 1 2005-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 1 6 2005-10-29 Kyotaro HORIGUCHI <horiguti@meadowy.org> 2 7 branches/2.1/src/coding.c
r3656 r3948 5314 5314 Lisp_Object components; 5315 5315 5316 if (data[0] < 0 || i + data[0] > cmp_data->used) 5317 /* Invalid composition data. */ 5318 break; 5319 5316 5320 if (method == COMPOSITION_RELATIVE) 5317 5321 components = Qnil; … … 5324 5328 && len % 2 == 0) 5325 5329 len --; 5330 if (len < 1) 5331 /* Invalid composition data. */ 5332 break; 5326 5333 for (j = 0; j < len; j++) 5327 5334 args[j] = make_number (data[4 + j]);
