]> git.saurik.com Git - wxWidgets.git/commitdiff
Make the unicode table scripts generate file with whitespacing done as has been manua...
authorMart Raudsepp <leio@gentoo.org>
Wed, 5 Apr 2006 00:18:31 +0000 (00:18 +0000)
committerMart Raudsepp <leio@gentoo.org>
Wed, 5 Apr 2006 00:18:31 +0000 (00:18 +0000)
warning on top.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38566 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

misc/unictabl/mk_ctable.c
misc/unictabl/mk_encodings.sh

index 65c96f87bb272d113ff162a7de2668ca3f32f5dc..19b63326cc7d2698d8416a70a26a62b935c61053 100644 (file)
@@ -40,8 +40,8 @@ int main(int argc, char *argv[])
     /* dump it: */
     
     printf("\n\n"
     /* dump it: */
     
     printf("\n\n"
-           "/* \n"
-           " * %s to Unicode recoding table \n"
+           "/*\n"
+           " * %s to Unicode recoding table\n"
            " * based on file %s by Unicode Consortium\n"
            " */\n\n"
            "static wxUint16 encoding_table__%s[128] = {",
            " * based on file %s by Unicode Consortium\n"
            " */\n\n"
            "static wxUint16 encoding_table__%s[128] = {",
@@ -50,10 +50,10 @@ int main(int argc, char *argv[])
     for (i = 128; i < 256; i++)
     { 
         if (i % 8 == 0)
     for (i = 128; i < 256; i++)
     { 
         if (i % 8 == 0)
-            printf("\n    ");
-        printf("0x%04X%c ", table[i].u, (i == 255) ? '\n' : ',');
+            printf("\n   ");
+        printf(" 0x%04X%c", table[i].u, (i == 255) ? '\n' : ',');
     }
     }
-    printf("};\n");
+    printf(" };\n");
 
     qsort(table + 128, 128, sizeof(table[0]), cmpt);
 
 
     qsort(table + 128, 128, sizeof(table[0]), cmpt);
 
index f97abc668775468f031d825dfa3cdd7225ae5fcd..a7dc61a7acf09deb199250847fc7a7f33c56547d 100755 (executable)
@@ -11,36 +11,36 @@ echo "  * writing copyright info..."
 echo "
 
 /*
 echo "
 
 /*
- *     This file is #included by encconv.cpp
+ *  This file is #included by encconv.cpp
  *
  *
- *     CVS-ID: \$Id\$
+ *  CVS-ID: \$Id\$
  *
  *
- *     *** ***  CAUTION! *** ***
- *     Do not modify this file by hand! It is generated by shell
- *     script \$(WXWIN)/misc/unictabl/regenerate
+ *  *** ***  CAUTION! *** ***
+ *  Do not modify this file by hand! It is generated by shell
+ *  script \$(WXWIN)/misc/unictabl/regenerate
  *
  *
- *     Parts of this file are based on tables published by Unicode, Inc.
- *     Original tables are freely available at 
- *         ftp://ftp.unicode.org/MAPPINGS
+ *  Parts of this file are based on tables published by Unicode, Inc.
+ *  Original tables are freely available at
+ *      ftp://ftp.unicode.org/Public/MAPPINGS
  *
  *
- *     Original copyright info as present in mapping tables follows:
+ *  Original copyright info as present in mapping tables follows:
  *
  *
  *
  *
- *     Copyright (c) 1991-1999 Unicode, Inc.  All Rights reserved.
+ *  Copyright (c) 1991-1999 Unicode, Inc.  All Rights reserved.
  *
  *
- *     This file is provided as-is by Unicode, Inc. (The Unicode Consortium).
- *     No claims are made as to fitness for any particular purpose.  No
- *     warranties of any kind are expressed or implied.  The recipient
- *     agrees to determine applicability of information provided.  If this
- *     file has been provided on optical media by Unicode, Inc., the sole
- *     remedy for any claim will be exchange of defective media within 90
- *     days of receipt.
+ *  This file is provided as-is by Unicode, Inc. (The Unicode Consortium).
+ *  No claims are made as to fitness for any particular purpose.  No
+ *  warranties of any kind are expressed or implied.  The recipient
+ *  agrees to determine applicability of information provided.  If this
+ *  file has been provided on optical media by Unicode, Inc., the sole
+ *  remedy for any claim will be exchange of defective media within 90
+ *  days of receipt.
  *
  *
- *     Unicode, Inc. hereby grants the right to freely use the information
- *     supplied in this file in the creation of products supporting the
- *     Unicode Standard, and to make copies of this file in any form for
- *     internal or external distribution as long as this notice remains
- *     attached.
+ *  Unicode, Inc. hereby grants the right to freely use the information
+ *  supplied in this file in the creation of products supporting the
+ *  Unicode Standard, and to make copies of this file in any form for
+ *  internal or external distribution as long as this notice remains
+ *  attached.
  */
 
 " > unictabl.inc
  */
 
 " > unictabl.inc