src/ZF/thy_syntax.ML
changeset 14598 7009f59711e3
parent 12183 c10cea75dd56
child 15570 8d8c70b41bab
--- a/src/ZF/thy_syntax.ML	Fri Apr 16 18:44:39 2004 +0200
+++ b/src/ZF/thy_syntax.ML	Fri Apr 16 18:45:56 2004 +0200
@@ -43,7 +43,7 @@
                            (map (scan_to_id o unenclose) recs)
           and srec_tms = mk_list recs
           and sintrs   =
-            mk_big_list (map (fn (x, y) => mk_pair (mk_pair (quote x, y), "[]")) ipairs)
+            mk_big_list (map (fn (x, y) => mk_pair (mk_pair (Library.quote x, y), "[]")) ipairs)
           and inames   = mk_list (map (mk_bind "" o fst) ipairs)
       in
          ";\n\n\
@@ -155,7 +155,7 @@
 fun mk_primrec_decl eqns =
   let val binds = map (mk_bind "" o fst) eqns in
     ";\nval (thy, " ^ mk_list binds ^ ") = PrimrecPackage.add_primrec " ^
-      mk_list (map (fn p => mk_pair (mk_pair p, "[]")) (map (apfst quote) eqns)) ^ " " ^ " thy;\n\
+      mk_list (map (fn p => mk_pair (mk_pair p, "[]")) (map (apfst Library.quote) eqns)) ^ " " ^ " thy;\n\
     \val thy = thy\n"
   end;