diff options
author | John Naylor | 2021-08-20 14:34:26 +0000 |
---|---|---|
committer | John Naylor | 2021-08-25 17:01:35 +0000 |
commit | eb0d0d2c7300c9c5c22b35975c11265aa4becc84 (patch) | |
tree | 9604d1e906ec97ad7b8658e7058463c287b7f91d /src/common/wchar.c | |
parent | 373e08a9f771e724efd3bd29f78c39515792dcf3 (diff) |
Rename unicode_combining_table to unicode_width_table
No functional changes. A future commit will use this table for
other purposes besides combining characters.
Diffstat (limited to 'src/common/wchar.c')
-rw-r--r-- | src/common/wchar.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |