Merge pull request #767 from prometheus/fabxc/cr-fix

promql: fix lexing of \r as whitespaces
This commit is contained in:
Fabian Reinartz 2015-06-02 20:19:20 +02:00
commit bc574a0d93
2 changed files with 4 additions and 1 deletions

View file

@ -724,7 +724,7 @@ Loop:
}
func isSpace(r rune) bool {
return r == ' ' || r == '\t' || r == '\n'
return r == ' ' || r == '\t' || r == '\n' || r == '\r'
}
// isEndOfLine reports whether r is an end-of-line character.

View file

@ -42,6 +42,9 @@ var tests = []struct {
{itemDuration, 1, `5m`},
{itemRightBracket, 3, `]`},
},
}, {
input: "\r\n\r",
expected: []item{},
},
// Test numbers.
{