src/Tools/jEdit/src/fold_handling.scala
changeset 63457 be6ceddff102
parent 63454 08a1f61a49a6
child 64621 7116f2634e32
--- a/src/Tools/jEdit/src/fold_handling.scala	Tue Jul 12 11:51:05 2016 +0200
+++ b/src/Tools/jEdit/src/fold_handling.scala	Tue Jul 12 12:58:53 2016 +0200
@@ -34,12 +34,12 @@
     override def getPrecedingFoldLevels(
       buffer: JEditBuffer, line: Int, seg: Segment, level: Int): java.util.List[Integer] =
     {
-      val struct = Token_Markup.Line_Context.next(buffer, line).structure
+      val structure = Token_Markup.Line_Context.next(buffer, line).structure
       val result =
-        if (line > 0 && struct.command)
+        if (line > 0 && structure.command)
           Range.inclusive(line - 1, 0, -1).iterator.
             map(i => Token_Markup.Line_Context.next(buffer, i).structure).
-            takeWhile(_.improper).map(_ => struct.depth max 0).toList
+            takeWhile(_.improper).map(_ => structure.depth max 0).toList
         else Nil
 
       if (result.isEmpty) null