src/Pure/ML/ml_context.ML
changeset 57832 5b48f2047c24
parent 56434 7acc933bd7cc
child 57834 0d295e339f52
equal deleted inserted replaced
57831:885888a880fb 57832:5b48f2047c24
    91 
    91 
    92 fun begin_env visible =
    92 fun begin_env visible =
    93   ML_Lex.tokenize
    93   ML_Lex.tokenize
    94     ("structure Isabelle =\nstruct\n\
    94     ("structure Isabelle =\nstruct\n\
    95      \val ML_context = Context_Position.set_visible " ^ Bool.toString visible ^
    95      \val ML_context = Context_Position.set_visible " ^ Bool.toString visible ^
    96      " (ML_Context.the_local_context ());\n");
    96      " (ML_Context.the_local_context ());\n\
       
    97      \val ML_print_depth = ML_Options.get_print_depth ();\n");
    97 
    98 
    98 val end_env = ML_Lex.tokenize "end;";
    99 val end_env = ML_Lex.tokenize "end;";
    99 val reset_env = ML_Lex.tokenize "structure Isabelle = struct end";
   100 val reset_env = ML_Lex.tokenize "structure Isabelle = struct end";
   100 
   101 
   101 in
   102 in