aboutsummaryrefslogtreecommitdiffhomepage
path: root/printing
diff options
context:
space:
mode:
authorGravatar Pierre Courtieu <Pierre.Courtieu@cnam.fr>2014-12-15 20:56:07 +0100
committerGravatar Pierre Courtieu <Pierre.Courtieu@cnam.fr>2014-12-15 20:56:15 +0100
commit0e730e4fa316cbfbd2d6dc60276498f57f500e0e (patch)
treea3149569f71bdc4ee842ec49b8d6d98c126c7102 /printing
parent594d2b8beb98b67f059014c5d76ba0d09dba2e4c (diff)
Changed bullet informations to warning for better display in PG.
Since it displays together with the goal, it is better (for pg and other interfaces probably) that they are in a different message.
Diffstat (limited to 'printing')
-rw-r--r--printing/printer.ml18
1 files changed, 6 insertions, 12 deletions
diff --git a/printing/printer.ml b/printing/printer.ml
index cda0403d9..5d9fa1313 100644
--- a/printing/printer.ml
+++ b/printing/printer.ml
@@ -618,22 +618,16 @@ let pr_open_subgoals ?(proof=Proof_global.give_me_the_proof ()) () =
begin match bgoals,shelf,given_up with
| [] , [] , [] -> pr_subgoals None sigma seeds shelf stack goals
| [] , [] , _ ->
- (* emacs mode: xml-like flag for detecting information message *)
- str (emacs_str "<infomsg>") ++
- str "No more goals, however there are goals you gave up. You need to go back and solve them."
- ++ str (emacs_str "</infomsg>")
- ++ fnl () ++ fnl ()
+ msg_warning (str "No more goals, however there are goals you gave up. You need to go back and solve them.");
+ fnl () ++ fnl ()
++ pr_subgoals ~pr_first:false None bsigma seeds [] [] given_up
| [] , _ , _ ->
- (* emacs mode: xml-like flag for detecting information message *)
- str (emacs_str "<infomsg>") ++
- str "All the remaining goals are on the shelf."
- ++ str (emacs_str "</infomsg>")
- ++ fnl () ++ fnl ()
+ msg_warning (str "All the remaining goals are on the shelf.");
+ fnl () ++ fnl ()
++ pr_subgoals ~pr_first:false None bsigma seeds [] [] shelf
| _ , _, _ ->
- str "This subproof is complete, but there are still unfocused goals."
- ++ fnl () ++ fnl ()
+ msg_warning (str "This subproof is complete, but there are still unfocused goals.");
+ fnl () ++ fnl ()
++ pr_subgoals ~pr_first:false None bsigma seeds shelf [] bgoals
end
| _ -> pr_subgoals None sigma seeds shelf stack goals