*** empty log message ***
[m17n/m17n-db.git] / CASED.awk
index 174999a..20fb6cd 100644 (file)
--- a/CASED.awk
+++ b/CASED.awk
@@ -18,8 +18,8 @@
 
 # You should have received a copy of the GNU Lesser General Public
 # License along with the m17n library; if not, write to the Free
-# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-# 02111-1307, USA.
+# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+# Boston, MA 02110-1301, USA.
 
 BEGIN {
   tohex["0"] = 1;
@@ -75,13 +75,11 @@ function range(str, bit) {
 }
 
 /^[^\#]/ {
-
   if (FILENAME == "UNIDATA/UnicodeData.txt") {
     if ($3 ~ /L[ltu]/)
       single($1, 1);
     else if ($3 ~ /Mn|Me|Cf|Lm|Sk/)
       single($1, 2);
-    next;
   }
 
   else if (FILENAME == "UNIDATA/PropList.txt") {
@@ -90,7 +88,6 @@ function range(str, bit) {
        range($1, 1);
       else
        single($1, 1);
-      next;
     }
   }
 
@@ -100,7 +97,6 @@ function range(str, bit) {
        range($1, 2);
       else
        single($1, 2);
-      next;
     }
   }
 }