Commit cc074bf6 authored by Peter Eisentraut's avatar Peter Eisentraut

Fix comments

Some of these comments were copied and pasted without updating them,
some of them were duplicates.
parent 9a3e06ba
...@@ -49,10 +49,6 @@ while (<FILE>) ...@@ -49,10 +49,6 @@ while (<FILE>)
} }
close(FILE); close(FILE);
#
# first, generate UTF8 --> EUC_CN table
#
$file = "utf8_to_euc_cn.map"; $file = "utf8_to_euc_cn.map";
open(FILE, "> $file") || die("cannot open $file"); open(FILE, "> $file") || die("cannot open $file");
...@@ -77,7 +73,7 @@ print FILE "};\n"; ...@@ -77,7 +73,7 @@ print FILE "};\n";
close(FILE); close(FILE);
# #
# then generate EUC_JP --> UTF8 table # then generate EUC_CN --> UTF8 table
# #
reset 'array'; reset 'array';
......
...@@ -130,10 +130,6 @@ while (<FILE>) ...@@ -130,10 +130,6 @@ while (<FILE>)
} }
close(FILE); close(FILE);
#
# first, generate UTF8 --> EUC_JP table
#
$file = "utf8_to_euc_jp.map"; $file = "utf8_to_euc_jp.map";
open(FILE, "> $file") || die("cannot open $file"); open(FILE, "> $file") || die("cannot open $file");
......
...@@ -49,10 +49,6 @@ while (<FILE>) ...@@ -49,10 +49,6 @@ while (<FILE>)
} }
close(FILE); close(FILE);
#
# first, generate UTF8 --> EUC_KR table
#
$file = "utf8_to_euc_kr.map"; $file = "utf8_to_euc_kr.map";
open(FILE, "> $file") || die("cannot open $file"); open(FILE, "> $file") || die("cannot open $file");
...@@ -77,7 +73,7 @@ print FILE "};\n"; ...@@ -77,7 +73,7 @@ print FILE "};\n";
close(FILE); close(FILE);
# #
# then generate EUC_JP --> UTF8 table # then generate EUC_KR --> UTF8 table
# #
reset 'array'; reset 'array';
......
...@@ -65,10 +65,6 @@ while (<FILE>) ...@@ -65,10 +65,6 @@ while (<FILE>)
} }
close(FILE); close(FILE);
#
# first, generate UTF8 --> EUC_TW table
#
$file = "utf8_to_euc_tw.map"; $file = "utf8_to_euc_tw.map";
open(FILE, "> $file") || die("cannot open $file"); open(FILE, "> $file") || die("cannot open $file");
...@@ -93,7 +89,7 @@ print FILE "};\n"; ...@@ -93,7 +89,7 @@ print FILE "};\n";
close(FILE); close(FILE);
# #
# then generate EUC_JP --> UTF8 table # then generate EUC_TW --> UTF8 table
# #
reset 'array'; reset 'array';
......
...@@ -66,10 +66,6 @@ while (<FILE>) ...@@ -66,10 +66,6 @@ while (<FILE>)
close(FILE); close(FILE);
#
# first, generate UTF8 --> SJIS table
#
$file = "utf8_to_sjis.map"; $file = "utf8_to_sjis.map";
open(FILE, "> $file") || die("cannot open $file"); open(FILE, "> $file") || die("cannot open $file");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment