aboutsummaryrefslogtreecommitdiff
path: root/ide
diff options
context:
space:
mode:
authorglondu2010-09-13 22:48:18 +0000
committerglondu2010-09-13 22:48:18 +0000
commit4b6b6ba87ee19854bb8464cb248fcf40f0b965e1 (patch)
tree2e77dbc4147293f6c7ee9213b3f540cad7c0a3a3 /ide
parentd8653e1e0fc6a5ddc0c03c16eb3d44821936b764 (diff)
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
Diffstat (limited to 'ide')
-rw-r--r--ide/coqide.ml4
-rw-r--r--ide/ideutils.ml2
2 files changed, 3 insertions, 3 deletions
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.*)";;