]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix indentation and add curlies (closes #27093)
authorBenjamin Peterson <benjamin@python.org>
Tue, 24 May 2016 05:47:50 +0000 (22:47 -0700)
committerBenjamin Peterson <benjamin@python.org>
Tue, 24 May 2016 05:47:50 +0000 (22:47 -0700)
Modules/cjkcodecs/cjkcodecs.h

index 23642df9aff9e818713d38c49af679af07d2c039..b72a3f00283b3879193e54d501c7c1f7a9549b65 100644 (file)
@@ -328,22 +328,26 @@ find_pairencmap(ucs2_t body, ucs2_t modifier,
     min = 0;
     max = haystacksize;
 
-    for (pos = haystacksize >> 1; min != max; pos = (min + max) >> 1)
+    for (pos = haystacksize >> 1; min != max; pos = (min + max) >> 1) {
         if (value < haystack[pos].uniseq) {
-            if (max == pos) break;
-            else max = pos;
+            if (max != pos) {
+                max = pos;
+                continue;
+            }
         }
         else if (value > haystack[pos].uniseq) {
-            if (min == pos) break;
-            else min = pos;
+            if (min != pos) {
+                min = pos;
+                continue;
+            }
         }
-        else
-            break;
+        break;
+    }
 
-        if (value == haystack[pos].uniseq)
-            return haystack[pos].code;
-        else
-            return DBCINV;
+    if (value == haystack[pos].uniseq) {
+        return haystack[pos].code;
+    }
+    return DBCINV;
 }
 #endif