src/Pure/Thy/present.ML
changeset 7789 57d20133224e
parent 7769 700439dc581e
child 7802 fba7a36e8556
--- a/src/Pure/Thy/present.ML	Thu Oct 07 17:20:19 1999 +0200
+++ b/src/Pure/Thy/present.ML	Thu Oct 07 17:20:58 1999 +0200
@@ -20,6 +20,7 @@
   type token
   val basic_token: OuterLex.token -> token
   val markup_token: string * string -> token
+  val verbatim_token: string -> token
   val token_source: string -> (unit -> token list) -> unit
   val begin_theory: string -> string list -> (Path.T * bool) list -> theory -> theory
   val result: string -> string -> thm -> unit
@@ -355,6 +356,7 @@
 type token = Latex.token;
 val basic_token = Latex.Basic;
 val markup_token = Latex.Markup;
+val verbatim_token = Latex.Verbatim;
 
 fun token_source name mk_toks =
   with_session () (fn _ => add_tex_source name (Latex.token_source (mk_toks ())));