X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2Fcomponents%2Fbinaries%2Fmac%2Foptions.ml;h=ad48d2ebbf3a31ca488b928618f895b275ac94b1;hb=65008df95049eb835941ffea1aa682c9253c4c2b;hp=9379246715f23702e63096e44732a8ee81ab04c0;hpb=c07e9b0a3e65c28ca4154fec76a54a9a118fa7e1;p=helm.git diff --git a/matita/components/binaries/mac/options.ml b/matita/components/binaries/mac/options.ml index 937924671..ad48d2ebb 100644 --- a/matita/components/binaries/mac/options.ml +++ b/matita/components/binaries/mac/options.ml @@ -1,11 +1,27 @@ +(* + ||M|| This file is part of HELM, an Hypertextual, Electronic + ||A|| Library of Mathematics, developed at the Computer Science + ||T|| Department, University of Bologna, Italy. + ||I|| + ||T|| HELM is free software; you can redistribute it and/or + ||A|| modify it under the terms of the GNU General Public License + \ / version 2 or (at your option) any later version. + \ / This software is distributed as is, NO WARRANTY. + V_______________________________________________________________ *) + let debug_lexer_default = false let count_default = 0 +let page_default = 5120 + let debug_lexer = ref debug_lexer_default let count = ref count_default +let page = ref page_default + let clear () = debug_lexer := debug_lexer_default; - count := count_default + count := count_default; + page := page_default