tuned;
authorwenzelm
Thu, 04 Aug 2016 11:32:21 +0200
changeset 63605 c7916060f55e
parent 63604 d8de4f8b95eb
child 63606 fc3a23763617
tuned;
src/Pure/Isar/document_structure.scala
src/Tools/jEdit/src/isabelle_sidekick.scala
--- a/src/Pure/Isar/document_structure.scala	Thu Aug 04 11:17:11 2016 +0200
+++ b/src/Pure/Isar/document_structure.scala	Thu Aug 04 11:32:21 2016 +0200
@@ -13,7 +13,7 @@
 
 object Document_Structure
 {
-  /** section headings etc. **/
+  /* general structure */
 
   sealed abstract class Document { def length: Int }
   case class Block(name: String, text: String, body: List[Document]) extends Document
@@ -21,6 +21,9 @@
   case class Atom(command: Command) extends Document
   { def length: Int = command.length }
 
+
+  /* section headings etc. */
+
   def heading_level(keywords: Keyword.Keywords, command: Command): Option[Int] =
   {
     val name = command.span.name
@@ -39,7 +42,7 @@
     }
   }
 
-  def parse_document(
+  def parse_sections(
     syntax: Outer_Syntax,
     node_name: Document.Node.Name,
     text: CharSequence): List[Document] =
--- a/src/Tools/jEdit/src/isabelle_sidekick.scala	Thu Aug 04 11:17:11 2016 +0200
+++ b/src/Tools/jEdit/src/isabelle_sidekick.scala	Thu Aug 04 11:32:21 2016 +0200
@@ -138,7 +138,7 @@
     node_name(buffer) match {
       case Some(name) =>
         make_tree(data.root, 0,
-          Document_Structure.parse_document(syntax, name, JEdit_Lib.buffer_text(buffer)))
+          Document_Structure.parse_sections(syntax, name, JEdit_Lib.buffer_text(buffer)))
         true
       case None => false
     }