src/Pure/Isar/isar_thy.ML
changeset 7862 3e75fbd4a46b
parent 7851 4a6df182b093
child 7909 824ea50b8dbb
--- a/src/Pure/Isar/isar_thy.ML	Thu Oct 14 12:46:30 1999 +0200
+++ b/src/Pure/Isar/isar_thy.ML	Thu Oct 14 12:47:54 1999 +0200
@@ -13,12 +13,12 @@
   val add_subsection: Comment.text -> theory -> theory
   val add_subsubsection: Comment.text -> theory -> theory
   val add_text: Comment.text -> theory -> theory
-  val add_verbatim: Comment.text -> theory -> theory
+  val add_text_raw: Comment.text -> theory -> theory
   val add_sect: Comment.text -> ProofHistory.T -> ProofHistory.T
   val add_subsect: Comment.text -> ProofHistory.T -> ProofHistory.T
   val add_subsubsect: Comment.text -> ProofHistory.T -> ProofHistory.T
   val add_txt: Comment.text -> ProofHistory.T -> ProofHistory.T
-  val add_verb: Comment.text -> ProofHistory.T -> ProofHistory.T
+  val add_txt_raw: Comment.text -> ProofHistory.T -> ProofHistory.T
   val add_classes: (bclass * xclass list) list * Comment.text -> theory -> theory
   val add_classes_i: (bclass * class list) list * Comment.text  -> theory -> theory
   val add_classrel: (xclass * xclass) * Comment.text -> theory -> theory
@@ -172,7 +172,7 @@
   Toplevel.keep (fn state => if Toplevel.is_toplevel state then () else raise Toplevel.UNDEF);
 
 fun add_text comment thy = thy:theory;
-val add_verbatim = add_text;
+val add_text_raw = add_text;
 val add_chapter = add_text;
 
 fun gen_add_section add present txt thy =
@@ -183,7 +183,7 @@
 val add_subsubsection = gen_add_section add_text Present.subsubsection;
 
 fun add_txt comment = ProofHistory.apply Proof.assert_forward;
-val add_verb = add_txt;
+val add_txt_raw = add_txt;
 val add_sect = add_txt;
 val add_subsect = add_txt;
 val add_subsubsect = add_txt;