diff options
Diffstat (limited to 'proofs')
| -rw-r--r-- | proofs/pfedit.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/proofs/pfedit.ml b/proofs/pfedit.ml index ab2a0c5135..4b3b797bf8 100644 --- a/proofs/pfedit.ml +++ b/proofs/pfedit.ml @@ -178,7 +178,7 @@ let save_named opacity = ({ const_entry_body = Cooked pfterm; const_entry_type = Some concl }, strength); del_proof ident; - message(ident ^ " is defined") + if Options.is_verbose() then message (ident ^ " is defined") let save_anonymous opacity save_ident n = let (pfs,ts) = get_state() @@ -197,7 +197,7 @@ let save_anonymous opacity save_ident n = strength) end; del_proof ident; - message(save_ident ^ " is defined") + if Options.is_verbose() then message (save_ident ^ " is defined") let save_anonymous_thm opacity id = save_anonymous opacity id NeverDischarge |
