diff options
author | ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2012-05-30 16:05:13 +0000 |
---|---|---|
committer | ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2012-05-30 16:05:13 +0000 |
commit | 24879dc0e59856e297b0172d00d67df67fbb0184 (patch) | |
tree | d57ffef43297aa7f8b29830f3bde7f3bd334babb /library | |
parent | f9d97c62b2e46829a6ece74d07f5fab2cea1d769 (diff) |
More uniformisation in Pp.warn functions.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15399 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'library')
-rw-r--r-- | library/library.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/library.ml b/library/library.ml index 66bca4f1b..417c567a8 100644 --- a/library/library.ml +++ b/library/library.ml @@ -656,7 +656,7 @@ let save_library_to dir f = System.marshal_out ch di; System.marshal_out ch table; close_out ch - with e -> warning ("Removed file "^f'); close_out ch; Sys.remove f'; raise e + with e -> msg_warning (str ("Removed file "^f')); close_out ch; Sys.remove f'; raise e (************************************************************************) (*s Display the memory use of a library. *) |