aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2016-08-24 00:04:11 +0200
committerPierre-Marie Pédrot2016-08-24 00:04:46 +0200
commit22fa25bab254eede90867cbf75699b8af09fb3c7 (patch)
tree65cb07ab27665da21fa8c9f774584dfa1c0c070c
parent7799de316e12878ef47fb74fcb4ec9533005a6dc (diff)
parenteb479438328a473ff1cf5fe010ed714194dbf28f (diff)
Merge PR #258: "Fix newline issues" into v8.6
-rw-r--r--pretyping/reductionops.ml4
-rw-r--r--proofs/refiner.ml2
-rw-r--r--toplevel/vernac.ml2
3 files changed, 4 insertions, 4 deletions
diff --git a/pretyping/reductionops.ml b/pretyping/reductionops.ml
index 5484e70b61..8259876c29 100644
--- a/pretyping/reductionops.ml
+++ b/pretyping/reductionops.ml
@@ -790,11 +790,11 @@ let rec whd_state_gen ?csts tactic_mode flags env sigma =
(h 0 (str "<<" ++ Termops.print_constr x ++
str "|" ++ cut () ++ Cst_stack.pr cst_l ++
str "|" ++ cut () ++ Stack.pr Termops.print_constr stack ++
- str ">>") ++ fnl ())
+ str ">>"))
in
let fold () =
let () = if !debug_RAKAM then
- let open Pp in Feedback.msg_notice (str "<><><><><>" ++ fnl ()) in
+ let open Pp in Feedback.msg_notice (str "<><><><><>") in
(s,cst_l)
in
match kind_of_term x with
diff --git a/proofs/refiner.ml b/proofs/refiner.ml
index ebd30820be..ea8543b02f 100644
--- a/proofs/refiner.ml
+++ b/proofs/refiner.ml
@@ -221,7 +221,7 @@ let tclSHOWHYPS (tac : tactic) (goal: Goal.goal Evd.sigma)
Feedback.msg_notice
(str (emacs_str "<infoH>")
++ (hov 0 (str s))
- ++ (str (emacs_str "</infoH>")) ++ fnl());
+ ++ (str (emacs_str "</infoH>")));
tclIDTAC goal;;
diff --git a/toplevel/vernac.ml b/toplevel/vernac.ml
index f83ada466b..0fc56353e8 100644
--- a/toplevel/vernac.ml
+++ b/toplevel/vernac.ml
@@ -101,7 +101,7 @@ let verbose_phrase verbch loc =
let s = String.create len in
seek_in ch (fst loc);
really_input ch s 0 len;
- Feedback.msg_notice (str s ++ fnl ())
+ Feedback.msg_notice (str s)
| None -> ()
exception End_of_input