From eb0d0d2c7300c9c5c22b35975c11265aa4becc84 Mon Sep 17 00:00:00 2001 From: John Naylor Date: Fri, 20 Aug 2021 10:34:26 -0400 Subject: Rename unicode_combining_table to unicode_width_table No functional changes. A future commit will use this table for other purposes besides combining characters. --- src/common/wchar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/common/wchar.c') diff --git a/src/common/wchar.c b/src/common/wchar.c index 0636b8765ba..bb97b5f54f4 100644 --- a/src/common/wchar.c +++ b/src/common/wchar.c @@ -644,7 +644,7 @@ mbbisearch(pg_wchar ucs, const struct mbinterval *table, int max) static int ucs_wcwidth(pg_wchar ucs) { -#include "common/unicode_combining_table.h" +#include "common/unicode_width_table.h" /* test for 8-bit control characters */ if (ucs == 0) -- cgit v1.2.3