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

@ -5,7 +5,7 @@
"dependencies": {
"coffee-script": "1.6.2",
"ctags": "0.3.0",
"oniguruma": "0.8.0",
"oniguruma": "0.11.0",
"mkdirp": "0.3.5",
"git-utils": "0.14.0",
"underscore": "1.4.4",

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)