Issue #1054943: Fix unicodedata.normalize('NFC', text) for the Public Review
Issue #29.

PR #29 was released in february 2004!
diff --git a/Modules/unicodedata.c b/Modules/unicodedata.c
index 2eb1911..0269175 100644
--- a/Modules/unicodedata.c
+++ b/Modules/unicodedata.c
@@ -682,7 +682,7 @@
       comb = 0;
       while (i1 < end) {
           int comb1 = _getrecord_ex(*i1)->combining;
-          if (comb1 && comb == comb1) {
+          if (comb && (comb1 == 0 || comb == comb1)) {
               /* Character is blocked. */
               i1++;
               continue;