File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ private[comment] final class WikiParser(
44
44
else if (checkSkipInitWhitespace(" ----" ))
45
45
hrule()
46
46
else if (checkList)
47
- listBlock
47
+ listBlock()
48
48
else {
49
49
para()
50
50
}
@@ -76,7 +76,7 @@ private[comment] final class WikiParser(
76
76
* not a list or a different list. */
77
77
def listLine (indent : Int , style : String ): Option [Block ] =
78
78
if (countWhitespace > indent && checkList)
79
- Some (listBlock)
79
+ Some (listBlock() )
80
80
else if (countWhitespace != indent || ! checkSkipInitWhitespace(style))
81
81
None
82
82
else {
@@ -217,7 +217,7 @@ private[comment] final class WikiParser(
217
217
check(" ,," ) ||
218
218
check(" [[" ) ||
219
219
isInlineEnd ||
220
- checkParaEnded ||
220
+ checkParaEnded() ||
221
221
char == endOfLine
222
222
}
223
223
Text (str)
@@ -227,7 +227,7 @@ private[comment] final class WikiParser(
227
227
val inlines : List [Inline ] = {
228
228
val iss = mutable.ListBuffer .empty[Inline ]
229
229
iss += inline0()
230
- while (! isInlineEnd && ! checkParaEnded) {
230
+ while (! isInlineEnd && ! checkParaEnded() ) {
231
231
val skipEndOfLine = if (char == endOfLine) {
232
232
nextChar()
233
233
true
You can’t perform that action at this time.
0 commit comments