diff options
| author | coqbot-app[bot] | 2020-12-16 18:43:02 +0000 |
|---|---|---|
| committer | GitHub | 2020-12-16 18:43:02 +0000 |
| commit | 70ea750aa5d28a04e74e35559fb02b2eed7cb3e3 (patch) | |
| tree | 96c53a0a170625558ada354e25e7acf50a7b9df1 | |
| parent | 41cf9c19887734e5734f150059825e85ba55cc5a (diff) | |
| parent | 4081777e099ebc5770dfcd700bff44d5dbf26a14 (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.py | 2 |
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): |
