Don't renumber MarkGlyphSetsDef
diff --git a/Lib/fontTools/subset.py b/Lib/fontTools/subset.py
index 1da1962..7179103 100644
--- a/Lib/fontTools/subset.py
+++ b/Lib/fontTools/subset.py
@@ -1108,7 +1108,9 @@
   if hasattr(table, "MarkGlyphSetsDef") and table.MarkGlyphSetsDef:
     for coverage in table.MarkGlyphSetsDef.Coverage:
       coverage.subset(glyphs)
-    table.MarkGlyphSetsDef.Coverage = [c for c in table.MarkGlyphSetsDef.Coverage if c.glyphs]
+    # TODO: The following is disabled.  If enabling, we need to go fixup all
+    # lookups that use MarkFilteringSet and map their set.
+    #indices = table.MarkGlyphSetsDef.Coverage = [c for c in table.MarkGlyphSetsDef.Coverage if c.glyphs]
   return True
 
 @_add_method(ttLib.getTableClass('GDEF'))