diff options
| author | letouzey | 2011-07-28 17:20:11 +0000 |
|---|---|---|
| committer | letouzey | 2011-07-28 17:20:11 +0000 |
| commit | 6b2d6dc14fdc3f8c0b71843c88c3903d0394f5e2 (patch) | |
| tree | 703fe94dc05cf8db7fe6361ada9b7bd1362dd965 | |
| parent | 5252abc632f7b79600a34d6c0712b6d2c070ade0 (diff) | |
Ide_slave: same attributes for { } and Focus/Unfocus (fix coqide display)
Without this, coqide display a copy of the goal in its
response buffer...
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@14310 85f007b7-540e-0410-9357-904b9bb8a0f7
| -rw-r--r-- | toplevel/ide_slave.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toplevel/ide_slave.ml b/toplevel/ide_slave.ml index 41f200b4fe..4d1574e8c3 100644 --- a/toplevel/ide_slave.ml +++ b/toplevel/ide_slave.ml @@ -166,8 +166,8 @@ let rec attribute_of_vernac_command = function | VernacProof _ -> [] | VernacProofMode _ -> [] - | VernacSubproof _ -> [] - | VernacEndSubproof -> [] + | VernacSubproof _ -> [SolveCommand] + | VernacEndSubproof -> [SolveCommand] (* Toplevel control *) | VernacToplevelControl _ -> [] |
