diff options
| author | Guillaume Melquiond | 2019-02-07 08:06:20 +0100 |
|---|---|---|
| committer | Antonio Nikishaev | 2019-10-17 17:48:46 +0400 |
| commit | a7b406bccfd51d7afee1f26ecfe38002be3b76f2 (patch) | |
| tree | 8eee0ec803dcc18bbfee5967d3c36b8be7b7b084 /test-suite | |
| parent | cc9856e33fa1a15fe699e8d9cd7b76086563683d (diff) | |
Fix Locate printing regression
Fixes #9428. (Again.)
This is a cherry-pick of 68927ac4/4b02fbd9 bugfixes, because 0251c800 reverted them.
Corrects a 8.9.1 → 8.10.0 regression.
(cherry picked from commit 68927ac48b1ce8fe30edef24defdcdc84173a5a5)
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/output/locate.out | 3 | ||||
| -rw-r--r-- | test-suite/output/locate.v | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/output/locate.out b/test-suite/output/locate.out new file mode 100644 index 0000000000..473db2d312 --- /dev/null +++ b/test-suite/output/locate.out @@ -0,0 +1,3 @@ +Notation +"b1 && b2" := if b1 then b2 else false (default interpretation) +"x && y" := andb x y : bool_scope diff --git a/test-suite/output/locate.v b/test-suite/output/locate.v new file mode 100644 index 0000000000..af8b0ee193 --- /dev/null +++ b/test-suite/output/locate.v @@ -0,0 +1,3 @@ +Set Printing Width 400. +Notation "b1 && b2" := (if b1 then b2 else false). +Locate "&&". |
