Blame disable-broken-doc-code.patch

6b81bf
diff --git a/doc_src/fish_synopsis.py b/doc_src/fish_synopsis.py
6b81bf
index 51df271..a674902 100644
6b81bf
--- a/doc_src/fish_synopsis.py
6b81bf
+++ b/doc_src/fish_synopsis.py
6b81bf
@@ -23,9 +23,9 @@ class FishSynopsisDirective(CodeBlock):
6b81bf
     required_arguments = 0
6b81bf
 
6b81bf
     def run(self):
6b81bf
-        if self.env.app.builder.name != "man":
6b81bf
-            self.arguments = ["fish-synopsis"]
6b81bf
-            return CodeBlock.run(self)
6b81bf
+        # if self.env.app.builder.name != "man":
6b81bf
+        #     self.arguments = ["fish-synopsis"]
6b81bf
+        #     return CodeBlock.run(self)
6b81bf
         lexer = FishSynopsisLexer()
6b81bf
         result = nodes.line_block()
6b81bf
         for (start, tok, text) in lexer.get_tokens_unprocessed("\n".join(self.content)):