]> matita.cs.unibo.it Git - helm.git/commitdiff
"verbose" argument of remove is now optional (default false)
authorStefano Zacchiroli <zack@upsilon.cc>
Fri, 23 Sep 2005 14:34:35 +0000 (14:34 +0000)
committerStefano Zacchiroli <zack@upsilon.cc>
Fri, 23 Sep 2005 14:34:35 +0000 (14:34 +0000)
helm/matita/matitaSync.ml
helm/matita/matitaSync.mli

index fc952ba4f02662577ea0d22f3f3a2caf5a7d893c..95dab03607493fb3f56e8ddccecaadefb92cf755 100644 (file)
@@ -288,7 +288,7 @@ let time_travel ~present ~past =
     
 let last_baseuri = ref ""
 
-let remove ~verbose uri =
+let remove ?(verbose=false) uri =
   let derived_uris_of_uri uri =
     UriManager.innertypesuri_of_uri uri ::
     UriManager.univgraphuri_of_uri uri ::
index 9dd13529cbe4cd4132566ebadf13707d46731c41..f3906fb8bc1febcf7de9f0735d2ab352d0fa9635 100644 (file)
@@ -46,5 +46,7 @@ val set_proof_aliases :
 
   (* removes the object from DB, Disk, CoercionsDB, CicEnvironment, getter 
    * asserts the uri is resolved to file:// so it is only for 
-   * user's objects *)
-val remove: verbose:bool -> UriManager.uri -> unit
+   * user's objects
+   * @param verbose defaults to false *)
+val remove: ?verbose:bool -> UriManager.uri -> unit
+