From 4b6b6ba87ee19854bb8464cb248fcf40f0b965e1 Mon Sep 17 00:00:00 2001 From: glondu Date: Mon, 13 Sep 2010 22:48:18 +0000 Subject: Fix unescaped end-of-lines (OCaml warning 29) See http://caml.inria.fr/mantis/view.php?id=4940 git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@13413 85f007b7-540e-0410-9357-904b9bb8a0f7 --- ide/coqide.ml | 4 ++-- ide/ideutils.ml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'ide') diff --git a/ide/coqide.ml b/ide/coqide.ml index 54e1307317..a060104c30 100644 --- a/ide/coqide.ml +++ b/ide/coqide.ml @@ -2430,8 +2430,8 @@ let main files = ("_Fixpoint __", "Fixpoint ident (_ : _) {struct _} : _ :=\n.\n", 29, 5, Some GdkKeysyms._F); add_complex_template("_Scheme __", - "Scheme new_scheme := Induction for _ Sort _ -with _ := Induction for _ Sort _.\n",61,10, Some GdkKeysyms._S); + "Scheme new_scheme := Induction for _ Sort _\ +\nwith _ := Induction for _ Sort _.\n",61,10, Some GdkKeysyms._S); (* Template for match *) let callback () = diff --git a/ide/ideutils.ml b/ide/ideutils.ml index 0d1704e72c..b8eb2754f8 100644 --- a/ide/ideutils.ml +++ b/ide/ideutils.ml @@ -96,7 +96,7 @@ let try_convert s = try do_convert s with _ -> - "(* Fatal error: wrong encoding in input. + "(* Fatal error: wrong encoding in input. \ Please choose a correct encoding in the preference panel.*)";; -- cgit v1.2.3