src/Pure/pure_thy.ML
changeset 26361 7946f459c6c8
parent 26344 04dacc6809b6
child 26367 06635166d211
equal deleted inserted replaced
26360:cd956c4eadff 26361:7946f459c6c8
   208 in
   208 in
   209 
   209 
   210 val get_fact_silent = get true;
   210 val get_fact_silent = get true;
   211 val get_fact = get false;
   211 val get_fact = get false;
   212 
   212 
   213 fun get_thms thy name = get_fact thy (Facts.Named (name, NONE));
   213 fun get_thms thy = get_fact thy o Facts.named;
   214 fun get_thm thy name = Facts.the_single name (get_thms thy name);
   214 fun get_thm thy name = Facts.the_single name (get_thms thy name);
   215 
   215 
   216 end;
   216 end;
   217 
   217 
   218 
   218