aboutsummaryrefslogtreecommitdiff
path: root/ide
diff options
context:
space:
mode:
authorMaxime Dénès2017-12-29 13:44:11 +0100
committerMaxime Dénès2017-12-29 13:44:11 +0100
commit6032ce4f548e88cf341b28dc70d48b9edf6e4f09 (patch)
tree94b8a23a219ede20d5dda67196ae6b1ed9a7d3b0 /ide
parent3624d943513ff1d79fdadf5b231ffcd3786b16c8 (diff)
parent9f1d36749529eb66d834d4b417cbc1d8e7cac325 (diff)
Merge PR #6492: Remove query-in-IDE warning.
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 aafc3fc59a..5f40a22423 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]) *)