aboutsummaryrefslogtreecommitdiffstats
path: root/src/character.h
diff options
context:
space:
mode:
authorPaul Eggert <[email protected]>2011-06-15 11:57:45 -0700
committerPaul Eggert <[email protected]>2011-06-15 11:57:45 -0700
commita2a0186171731765ee67d24a29fb80f54cd874f0 (patch)
tree7ca9924f10b11d9ed599cfcdf01102e5d6b4235f /src/character.h
parentdfc926249a7d14f037a01acba7a69339661e5107 (diff)
* character.h, charset.h: Use verify_expr, not verify_true.
Diffstat (limited to 'src/character.h')
-rw-r--r--src/character.h2
1 files changed, 1 insertions, 1 deletions
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 <http://www.gnu.org/licenses/>. */
(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