aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/mb/Unicode/convutils.pm
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2018-04-26 14:13:46 -0400
committerPeter Eisentraut <peter_e@gmx.net>2018-04-27 11:37:43 -0400
commit76ece169746f50652771a9fa9adc66d207e9d6f7 (patch)
treeda27731b6e0f280baade6b9ec5f0b6929a2dbf22 /src/backend/utils/mb/Unicode/convutils.pm
parentd4f16d50713077e69f8833df6b99d1eab0be1c33 (diff)
downloadpostgresql-76ece169746f50652771a9fa9adc66d207e9d6f7.tar.gz
postgresql-76ece169746f50652771a9fa9adc66d207e9d6f7.zip
perltidy: Add option --nooutdent-long-comments
Diffstat (limited to 'src/backend/utils/mb/Unicode/convutils.pm')
-rw-r--r--src/backend/utils/mb/Unicode/convutils.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/mb/Unicode/convutils.pm b/src/backend/utils/mb/Unicode/convutils.pm
index 64abcfd2cb3..03151faf4bc 100644
--- a/src/backend/utils/mb/Unicode/convutils.pm
+++ b/src/backend/utils/mb/Unicode/convutils.pm
@@ -138,11 +138,11 @@ sub print_conversion_tables_direction
print $out "/* src/backend/utils/mb/Unicode/$fname */\n";
print $out "/* This file is generated by $this_script */\n\n";
-# Collect regular, non-combined, mappings, and create the radix tree from them.
+ # Collect regular, non-combined, mappings, and create the radix tree from them.
my $charmap = &make_charmap($out, $charset, $direction, 0);
print_radix_table($out, $tblname, $charmap);
- # Collect combined characters, and create combined character table (if any)
+ # Collect combined characters, and create combined character table (if any)
my $charmap_combined = &make_charmap_combined($charset, $direction);
if (scalar @{$charmap_combined} > 0)