From 038e8d3c44243c2a2ae7cca24ca6b3918f23f942 Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Sun, 30 Oct 2005 18:04:17 +0000 Subject: Replace uvuni_to_utf8() with a macro that passes the extra 0 argument to uvuni_to_utf8_flags(). Move the old body to mathoms.c p4raw-id: //depot/perl@25905 --- utf8.h | 1 + 1 file changed, 1 insertion(+) (limited to 'utf8.h') diff --git a/utf8.h b/utf8.h index 9546fe8486..18cb7b2dbb 100644 --- a/utf8.h +++ b/utf8.h @@ -332,6 +332,7 @@ encoded character. #define IS_UTF8_CHAR_FAST(n) ((n) <= 4) +#define uvuni_to_utf8(d, uv) uvuni_to_utf8_flags(d, uv, 0) #define is_utf8_string_loc(s, len, ep) is_utf8_string_loclen(s, len, ep, 0) #endif /* IS_UTF8_CHAR() for UTF-8 */ -- cgit v1.2.1