aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoqbot-app[bot]2020-12-16 18:43:02 +0000
committerGitHub2020-12-16 18:43:02 +0000
commit70ea750aa5d28a04e74e35559fb02b2eed7cb3e3 (patch)
tree96c53a0a170625558ada354e25e7acf50a7b9df1
parent41cf9c19887734e5734f150059825e85ba55cc5a (diff)
parent4081777e099ebc5770dfcd700bff44d5dbf26a14 (diff)
Merge PR #13643: Add -q flag to coqrst python invocation of coqtop
Reviewed-by: Zimmi48 Ack-by: cpitclaudel
-rw-r--r--doc/tools/coqrst/repl/coqtop.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tools/coqrst/repl/coqtop.py b/doc/tools/coqrst/repl/coqtop.py
index 3021594183..388efd01d6 100644
--- a/doc/tools/coqrst/repl/coqtop.py
+++ b/doc/tools/coqrst/repl/coqtop.py
@@ -52,7 +52,7 @@ class CoqTop:
self.coqtop_bin = coqtop_bin or os.path.join(os.getenv('COQBIN', ""), "coqtop")
if not pexpect.utils.which(self.coqtop_bin):
raise ValueError("coqtop binary not found: '{}'".format(self.coqtop_bin))
- self.args = (args or []) + ["-color", "on"] * color
+ self.args = (args or []) + ["-q"] + ["-color", "on"] * color
self.coqtop = None
def __enter__(self):