breakable_re:  Fix the RE so that module definition entries don't prevent
	combining.
diff --git a/Doc/tools/indfix.py b/Doc/tools/indfix.py
index ede1d16..395f095 100755
--- a/Doc/tools/indfix.py
+++ b/Doc/tools/indfix.py
@@ -40,7 +40,8 @@
 	write("    \subitem %s%s\n" % (subitem, pages))
 
 
-breakable_re = re.compile(r"  \\item (.*) [(](.*)[)]((?:, \d+)+)")
+breakable_re = re.compile(
+    r"  \\item (.*) [(](.*)[)]((?:(?:, \d+)|(?:, \\[a-z]*\{\d+\}))+)")
 
 def main():
     import getopt