aboutsummaryrefslogtreecommitdiffhomepage
path: root/ide
diff options
context:
space:
mode:
authorGravatar Maxime Dénès <mail@maximedenes.fr>2017-12-22 14:00:05 +0100
committerGravatar Maxime Dénès <mail@maximedenes.fr>2017-12-27 14:03:29 +0100
commit9f1d36749529eb66d834d4b417cbc1d8e7cac325 (patch)
tree7f1c828f5fc4095764b80bfcda535abca2263732 /ide
parent7e319ad03aba413f3165b848eaf821b364f9291b (diff)
Remove query-in-IDE warning.
I don't understand what is wrong with putting a query in a script running in the IDE. It is typically needed when giving demos, and that sounds like a ligitimate use case. By the way, we do it ourselves every year during the demo at CoqPL...
Diffstat (limited to 'ide')
-rw-r--r--ide/ide_slave.ml4
1 files changed, 1 insertions, 3 deletions
diff --git a/ide/ide_slave.ml b/ide/ide_slave.ml
index aafc3fc59..5f40a2242 100644
--- a/ide/ide_slave.ml
+++ b/ide/ide_slave.ml
@@ -69,9 +69,7 @@ let ide_cmd_checks ~id (loc,ast) =
if is_known_option ast then
warn "Set this option from the IDE menu instead";
if is_navigation_vernac ast || is_undo ast then
- warn "Use IDE navigation instead";
- if is_query ast then
- warn "Query commands should not be inserted in scripts"
+ warn "Use IDE navigation instead"
(** Interpretation (cf. [Ide_intf.interp]) *)