src/Pure/Syntax/ast.ML
changeset 2229 64acb485ecce
parent 1506 192c48376d25
child 3775 a99fdf465dfb
--- a/src/Pure/Syntax/ast.ML	Tue Nov 26 16:18:42 1996 +0100
+++ b/src/Pure/Syntax/ast.ML	Tue Nov 26 16:26:06 1996 +0100
@@ -173,7 +173,7 @@
 struct
   val empty = [];
   val add = op ::;
-  val get = the o assoc;
+  fun get (alist,x) = the (assoc (alist,x));
 end;