renamed 'with' to 'using';
authorwenzelm
Mon, 19 Jul 1999 16:47:24 +0200
changeset 7040 613724c2ee6b
parent 7039 cc77b467e082
child 7041 48a66203192c
renamed 'with' to 'using';
src/HOLCF/IOA/meta_theory/ioa_package.ML
src/HOLCF/IOA/meta_theory/ioa_syn.ML
--- a/src/HOLCF/IOA/meta_theory/ioa_package.ML	Mon Jul 19 16:32:45 1999 +0200
+++ b/src/HOLCF/IOA/meta_theory/ioa_package.ML	Mon Jul 19 16:47:24 1999 +0200
@@ -556,7 +556,7 @@
     >> mk_hiding_decl ||
   (P.name -- (P.$$$ "=" |-- (P.$$$ "restrict" |-- P.name -- (P.$$$ "to" |-- P.list1 P.term))))
     >> mk_restriction_decl ||
-  (P.name -- (P.$$$ "=" |-- (P.$$$ "rename" |-- P.name -- (P.$$$ "with" |-- P.term))))
+  (P.name -- (P.$$$ "=" |-- (P.$$$ "rename" |-- P.name -- (P.$$$ "using" |-- P.term))))
     >> mk_rename_decl;
 
 val automatonP =
@@ -571,7 +571,7 @@
 val _ = OuterSyntax.add_keywords ["signature", "actions", "inputs",
   "outputs", "internals", "states", "initially", "transitions", "pre",
   "post", "transrel", ":=", "compose", "hide", "in", "restrict", "to",
-  "rename", "with"];
+  "rename", "using"];
 
 val _ = OuterSyntax.add_parsers [automatonP];
 
--- a/src/HOLCF/IOA/meta_theory/ioa_syn.ML	Mon Jul 19 16:32:45 1999 +0200
+++ b/src/HOLCF/IOA/meta_theory/ioa_syn.ML	Mon Jul 19 16:47:24 1999 +0200
@@ -151,7 +151,7 @@
                 ("to" $$-- (enum1 "," string)))) >> mk_restriction_decl)
 ||
   (name -- ("=" $$--
-	("rename" $$-- name -- ("with" $$-- string))) >> mk_rename_decl)
+	("rename" $$-- name -- ("using" $$-- string))) >> mk_rename_decl)
 ;
 
 in
@@ -164,7 +164,7 @@
 val _ = ThySyn.add_syntax
  ["signature","actions","inputs", "outputs", "internals", "states", "initially",
   "transitions", "pre", "post", "transrel",":=",
-"compose","hide","in","restrict","to","rename","with"]
+"compose","hide","in","restrict","to","rename","using"]
  [axm_section "automaton" "" ioa_decl];
 
 end;