summaryrefslogtreecommitdiff
path: root/tactics/auto.ml
diff options
context:
space:
mode:
authorGravatar Stephane Glondu <steph@glondu.net>2010-10-14 17:51:11 +0200
committerGravatar Stephane Glondu <steph@glondu.net>2010-10-14 17:51:11 +0200
commit3e96002677226c0cdaa8f355938a76cfb37a722a (patch)
tree3ca96e142fdb68e464d2f5f403f315282b94f922 /tactics/auto.ml
parentf18e6146f4fd6ed5b8ded10a3e602f5f64f919f4 (diff)
Imported Upstream version 8.3upstream/8.3
Diffstat (limited to 'tactics/auto.ml')
-rw-r--r--tactics/auto.ml11
1 files changed, 5 insertions, 6 deletions
diff --git a/tactics/auto.ml b/tactics/auto.ml
index faf0482b..ca2f4916 100644
--- a/tactics/auto.ml
+++ b/tactics/auto.ml
@@ -6,7 +6,7 @@
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
-(* $Id: auto.ml 13323 2010-07-24 15:57:30Z herbelin $ *)
+(* $Id: auto.ml 13390 2010-09-02 08:03:01Z herbelin $ *)
open Pp
open Util
@@ -706,12 +706,11 @@ let print_applicable_hint () =
(* displays the whole hint database db *)
let print_hint_db db =
let (ids, csts) = Hint_db.transparent_state db in
- msg (hov 0
+ msgnl (hov 0
((if Hint_db.use_dn db then str"Discriminated database"
- else str"Non-discriminated database") ++ fnl ()));
- msg (hov 0
- (str"Unfoldable variable definitions: " ++ pr_idpred ids ++ fnl () ++
- str"Unfoldable constant definitions: " ++ pr_cpred csts ++ fnl ()));
+ else str"Non-discriminated database")));
+ msgnl (hov 2 (str"Unfoldable variable definitions: " ++ pr_idpred ids));
+ msgnl (hov 2 (str"Unfoldable constant definitions: " ++ pr_cpred csts));
Hint_db.iter
(fun head hintlist ->
match head with