unused;
authorwenzelm
Mon, 12 Apr 2021 22:18:37 +0200
changeset 73570 e21aef453cd4
parent 73569 c5512fde6ad1
child 73571 f86661e32bed
unused;
src/Pure/PIDE/xml.ML
--- a/src/Pure/PIDE/xml.ML	Mon Apr 12 22:17:48 2021 +0200
+++ b/src/Pure/PIDE/xml.ML	Mon Apr 12 22:18:37 2021 +0200
@@ -35,7 +35,6 @@
     | Text of string
   type body = tree list
   val blob: string list -> body
-  val chunk: body -> tree
   val is_empty: tree -> bool
   val is_empty_body: body -> bool
   val xml_elemN: string
@@ -80,8 +79,6 @@
 
 val blob = map Text;
 
-fun chunk body = Elem (Markup.empty, body);
-
 fun is_empty (Text "") = true
   | is_empty _ = false;