--- a/src/Pure/Thy/thy_parse.ML Mon Oct 20 15:20:42 1997 +0200
+++ b/src/Pure/Thy/thy_parse.ML Mon Oct 20 17:08:18 1997 +0200
@@ -415,7 +415,7 @@
(* local, global path *)
-val empty_decl = empty >> K "";
+fun empty_decl toks = (empty >> K "") toks;
val global_path =
"|> (fn thy => if ! global_names then thy else Theory.add_path \"/\" thy)";
--- a/src/Pure/term.ML Mon Oct 20 15:20:42 1997 +0200
+++ b/src/Pure/term.ML Mon Oct 20 17:08:18 1997 +0200
@@ -50,7 +50,7 @@
| Var of indexname * typ
| Bound of int
| Abs of string*typ*term
- | op $ of term*term;
+ | $ of term*term;
(*For errors involving type mismatches*)