From 5c437270bd7fcd1eab57648cfba061c5e696d5ec Mon Sep 17 00:00:00 2001 From: handa Date: Fri, 16 Sep 2005 12:28:02 +0000 Subject: [PATCH] Delete space between function name and '('. --- CASE-MAPPING.awk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CASE-MAPPING.awk b/CASE-MAPPING.awk index 526a4ef..65e25aa 100644 --- a/CASE-MAPPING.awk +++ b/CASE-MAPPING.awk @@ -41,9 +41,9 @@ function mtext (str) { /^[^\#]/ { if (FILENAME == "UNIDATA/SpecialCasing.txt" && NF == 5) { printf ("0x%s ( ", $1); - mtext ($2); - mtext ($3); - mtext ($4); + mtext($2); + mtext($3); + mtext($4); printf (")\n"); X[$1] = 1; } -- 1.7.10.4