src/Pure/Thy/export.ML
changeset 68167 327bb0f5f768
parent 68146 d23af2dbb4e7
child 69627 3e26471d6d01
equal deleted inserted replaced
68166:021c6fecaf5c 68167:327bb0f5f768
    31     serial = serial (),
    31     serial = serial (),
    32     theory_name = Context.theory_long_name thy,
    32     theory_name = Context.theory_long_name thy,
    33     name = check_name name,
    33     name = check_name name,
    34     compress = compress} body;
    34     compress = compress} body;
    35 
    35 
    36 fun export thy name body = gen_export (fold (Integer.add o size) body 0 > 60) thy name body;
    36 val export = gen_export true;
    37 val export_raw = gen_export false;
    37 val export_raw = gen_export false;
    38 
    38 
    39 end;
    39 end;