Upgrade to oniguruma 0.11

This commit is contained in:
Kevin Sawicki
2013-04-22 12:18:05 -07:00
parent 4acb3acebc
commit 927e9c3de8
2 changed files with 1 additions and 3 deletions

View File

@@ -250,7 +250,6 @@ class Rule
scanners = injections.getScanners(ruleStack, position, firstLine, @anchorPosition)
for scanner in scanners
result = scanner.findNextMatch(line, position)
result?.scanner = scanner
return result if result?
normalizeCaptureIndices: (line, captureIndices) ->
@@ -265,7 +264,6 @@ class Rule
scanner = @getScanner(baseGrammar, position, firstLine)
result = scanner.findNextMatch(lineWithNewline, position)
result?.scanner = scanner
@normalizeCaptureIndices(line, result.captureIndices) if result?
injectionResult = @scanInjections(ruleStack, lineWithNewline, position, firstLine)