summaryrefslogtreecommitdiff
path: root/src/common/unicode
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2019-06-19 22:09:50 +0200
committerPeter Eisentraut <peter@eisentraut.org>2019-06-24 22:50:56 +0200
commit2cadefbb97ff8e5566476780dc200db06af6ba09 (patch)
treeb44570ced4781d85aeeb11cefe2f6b5c3618cd79 /src/common/unicode
parenteb8d05bfeca416a970cc33af5915ec7b4f4a2f69 (diff)
downloadpostgresql-2cadefbb97ff8e5566476780dc200db06af6ba09.tar.gz
Make script output more pgindent compatible
Diffstat (limited to 'src/common/unicode')
-rw-r--r--src/common/unicode/generate-unicode_norm_table.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/unicode/generate-unicode_norm_table.pl b/src/common/unicode/generate-unicode_norm_table.pl
index 6885cc76ab..7002fdf98c 100644
--- a/src/common/unicode/generate-unicode_norm_table.pl
+++ b/src/common/unicode/generate-unicode_norm_table.pl
@@ -97,7 +97,8 @@ typedef struct
} pg_unicode_decomposition;
#define DECOMP_NO_COMPOSE 0x80 /* don't use for re-composition */
-#define DECOMP_INLINE 0x40 /* decomposition is stored inline in dec_index */
+#define DECOMP_INLINE 0x40 /* decomposition is stored inline in
+ * dec_index */
#define DECOMPOSITION_SIZE(x) ((x)->dec_size_flags & 0x3F)
#define DECOMPOSITION_NO_COMPOSE(x) (((x)->dec_size_flags & DECOMP_NO_COMPOSE) != 0)