diff options
Diffstat (limited to 'toplevel/ide_slave.ml')
-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 cc3c7c18d..4ba60d8e0 100644 --- a/toplevel/ide_slave.ml +++ b/toplevel/ide_slave.ml @@ -105,9 +105,9 @@ let coqide_cmd_checks (loc,ast) = if Vernac.is_navigation_vernac ast then user_error "Use CoqIDE navigation instead"; if is_undo ast then - msgerrnl (str "Warning: rather use CoqIDE navigation instead"); + msg_warning (str "Rather use CoqIDE navigation instead"); if is_query ast then - msgerrnl (str "Warning: query commands should not be inserted in scripts") + msg_warning (str "Query commands should not be inserted in scripts") (** Interpretation (cf. [Ide_intf.interp]) *) |