Use spaces for indentation, not tabs.
[gnulib.git] / lib / unictype / bitmap.h
index 280b298..d8bbfd5 100644 (file)
@@ -31,17 +31,17 @@ bitmap_lookup (const void *table, ucs4_t uc)
     {
       int lookup1 = ((const int *) table)[1 + index1];
       if (lookup1 >= 0)
-       {
-         unsigned int index2 = (uc >> header_2) & header_3;
-         int lookup2 = ((const short *) table)[lookup1 + index2];
-         if (lookup2 >= 0)
-           {
-             unsigned int index3 = (uc >> 5) & header_4;
-             unsigned int lookup3 = ((const int *) table)[lookup2 + index3];
+        {
+          unsigned int index2 = (uc >> header_2) & header_3;
+          int lookup2 = ((const short *) table)[lookup1 + index2];
+          if (lookup2 >= 0)
+            {
+              unsigned int index3 = (uc >> 5) & header_4;
+              unsigned int lookup3 = ((const int *) table)[lookup2 + index3];
 
-             return (lookup3 >> (uc & 0x1f)) & 1;
-           }
-       }
+              return (lookup3 >> (uc & 0x1f)) & 1;
+            }
+        }
     }
   return 0;
 }