Mercurial > emacs
diff src/character.h @ 95576:abcb40dd43a2
(MAKE_CHAR_MULTIBYTE): Check the arg is a (uni)byte.
| author | Stefan Monnier <monnier@iro.umontreal.ca> |
|---|---|
| date | Thu, 05 Jun 2008 05:45:16 +0000 |
| parents | 29adfc9354e7 |
| children | f13a77e0e34f |
line wrap: on
line diff
--- a/src/character.h Thu Jun 05 05:44:12 2008 +0000 +++ b/src/character.h Thu Jun 05 05:45:16 2008 +0000 @@ -95,7 +95,8 @@ /* If C is not ASCII, make it multibyte. It assumes C < 256. */ -#define MAKE_CHAR_MULTIBYTE(c) ((c) = unibyte_to_multibyte_table[(c)]) +#define MAKE_CHAR_MULTIBYTE(c) \ + (eassert ((c) >= 0 && (c) < 256), (c) = unibyte_to_multibyte_table[(c)]) /* This is the maximum byte length of multibyte form. */ #define MAX_MULTIBYTE_LENGTH 5
