When I try to parse many p, I don't receive the 'expecting p' message:
> parse (many (char '.') >> eof) "" "a"
Left (line 1, column 1):
unexpected 'a'
expecting end of input
Compare to
> parse (sepBy (char '.') (char ',') >> eof) "" "a"
Left (line 1, column 1):
unexpected 'a'
expecting "." or end of input
which reports "." as I'd expect. many1 p <|> return [] works as well.
All of these functions accept empty input, so why doesn't many report what it's expecting? Is it a bug or a feature?