comparison src/buffer.c @ 110361:4d54e23aa31e

Fix typos in comments and ChangeLogs.
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 14 Sep 2010 22:32:35 +0200
parents 64732fa6188a
children 6ae8bab9b79a
comparison
equal deleted inserted replaced
110360:01aabf6189ef 110361:4d54e23aa31e
2343 p++, pos++; 2343 p++, pos++;
2344 else if (CHAR_BYTE8_HEAD_P (*p)) 2344 else if (CHAR_BYTE8_HEAD_P (*p))
2345 { 2345 {
2346 c = STRING_CHAR_AND_LENGTH (p, bytes); 2346 c = STRING_CHAR_AND_LENGTH (p, bytes);
2347 /* Delete all bytes for this 8-bit character but the 2347 /* Delete all bytes for this 8-bit character but the
2348 last one, and change the last one to the charcter 2348 last one, and change the last one to the character
2349 code. */ 2349 code. */
2350 bytes--; 2350 bytes--;
2351 del_range_2 (pos, pos, pos + bytes, pos + bytes, 0); 2351 del_range_2 (pos, pos, pos + bytes, pos + bytes, 0);
2352 p = GAP_END_ADDR; 2352 p = GAP_END_ADDR;
2353 *p++ = c; 2353 *p++ = c;