Mercurial > emacs
diff src/character.h @ 108933:b465aa3255ed
Fix typos.
| author | Juanma Barranquero <lekktu@gmail.com> |
|---|---|
| date | Thu, 03 Jun 2010 17:34:35 +0200 |
| parents | a6dabb2fc53a |
| children | d418516def73 376148b31b5e |
line wrap: on
line diff
--- a/src/character.h Wed Jun 02 23:07:39 2010 -0700 +++ b/src/character.h Thu Jun 03 17:34:35 2010 +0200 @@ -285,7 +285,7 @@ /* If P is before LIMIT, advance P to the next character boundary. Assumes that P is already at a character boundary of the same - mulitbyte form whose end address is LIMIT. */ + multibyte form whose end address is LIMIT. */ #define NEXT_CHAR_BOUNDARY(p, limit) \ do { \ @@ -296,7 +296,7 @@ /* If P is after LIMIT, advance P to the previous character boundary. Assumes that P is already at a character boundary of the same - mulitbyte form whose beginning address is LIMIT. */ + multibyte form whose beginning address is LIMIT. */ #define PREV_CHAR_BOUNDARY(p, limit) \ do { \ @@ -608,7 +608,7 @@ : 0) /* If C is a high surrogate, return 1. If C is a low surrogate, - return 0. Otherwise, return 0. */ + return 0. Otherwise, return 0. */ #define CHAR_SURROGATE_PAIR_P(c) \ ((c) < 0xD800 ? 0 \
