src/Pure/pure_thy.ML
changeset 15696 1da4ce092c0b
parent 15624 484178635bd8
child 15703 727ef1b8b3ee
--- a/src/Pure/pure_thy.ML	Mon Apr 11 12:18:27 2005 +0200
+++ b/src/Pure/pure_thy.ML	Mon Apr 11 12:34:34 2005 +0200
@@ -53,12 +53,12 @@
     theory attribute -> ((bstring * theory attribute list) *
     (thm list * theory attribute list) list) list -> theory ->
     theory * (bstring * thm list) list
-  val note_thmss_qualified:
+  val note_thmss_accesses:
     (string -> string list) ->
     theory attribute -> ((bstring * theory attribute list) *
     (thmref * theory attribute list) list) list -> theory ->
     theory * (bstring * thm list) list
-  val note_thmss_qualified_i:
+  val note_thmss_accesses_i:
     (string -> string list) ->
     theory attribute -> ((bstring * theory attribute list) *
     (thm list * theory attribute list) list) list -> theory ->
@@ -387,9 +387,9 @@
 (* always permit qualified names,
    clients may specify non-standard access policy *)
 
-fun note_thmss_qualified acc =
+fun note_thmss_accesses acc =
   gen_note_thmss (gen_enter_thms Sign.full_name' acc) get_thms;
-fun note_thmss_qualified_i acc =
+fun note_thmss_accesses_i acc =
   gen_note_thmss (gen_enter_thms Sign.full_name' acc) (K I);
 
 end;