added term_abbrev;
authorwenzelm
Sat, 09 Dec 2006 18:05:43 +0100
changeset 21724 04b4ed5e3033
parent 21723 88661e47147d
child 21725 ec2014c93d7f
added term_abbrev;
src/Pure/Isar/args.ML
--- a/src/Pure/Isar/args.ML	Sat Dec 09 18:05:42 2006 +0100
+++ b/src/Pure/Isar/args.ML	Sat Dec 09 18:05:43 2006 +0100
@@ -74,6 +74,7 @@
   val typ_abbrev: Context.generic * T list -> typ * (Context.generic * T list)
   val typ: Context.generic * T list -> typ * (Context.generic * T list)
   val term: Context.generic * T list -> term * (Context.generic * T list)
+  val term_abbrev: Context.generic * T list -> term * (Context.generic * T list)
   val prop: Context.generic * T list -> term * (Context.generic * T list)
   val tyname: Context.generic * T list -> string * (Context.generic * T list)
   val const: Context.generic * T list -> string * (Context.generic * T list)
@@ -318,6 +319,7 @@
 val typ_abbrev = Scan.peek (named_typ o ProofContext.read_typ_abbrev o Context.proof_of);
 val typ = Scan.peek (named_typ o ProofContext.read_typ o Context.proof_of);
 val term = Scan.peek (named_term o ProofContext.read_term o Context.proof_of);
+val term_abbrev = Scan.peek (named_term o ProofContext.read_term_abbrev o Context.proof_of);
 val prop = Scan.peek (named_term o ProofContext.read_prop o Context.proof_of);