From a2a0186171731765ee67d24a29fb80f54cd874f0 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 15 Jun 2011 11:57:45 -0700 Subject: * character.h, charset.h: Use verify_expr, not verify_true. --- src/character.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/character.h') diff --git a/src/character.h b/src/character.h index a447ad40ac..9a45e7f003 100644 --- a/src/character.h +++ b/src/character.h @@ -175,7 +175,7 @@ along with GNU Emacs. If not, see . */ (p)[1] = (0x80 | (((c) >> 6) & 0x3F)), \ (p)[2] = (0x80 | ((c) & 0x3F)), \ 3) \ - : (char_string (c, p) + !verify_true (sizeof (c) <= sizeof (unsigned)))) + : verify_expr (sizeof (c) <= sizeof (unsigned), char_string (c, p))) /* Store multibyte form of byte B in P. The caller should allocate at least MAX_MULTIBYTE_LENGTH bytes area at P in advance. Returns the -- cgit v1.2.3