From b9280519cca836d109a7f669fc294b0cd19a57d7 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 16 May 2016 10:17:51 -0700 Subject: Fix accepting comments after table definitions --- src/parser.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/parser.rs') diff --git a/src/parser.rs b/src/parser.rs index 265d7b5..8fa2d77 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -285,8 +285,7 @@ impl<'a> Parser<'a> { }; if self.require_newline_after_table { self.ws(); - self.comment(); - if !self.newline() { + if !self.comment() && !self.newline() { self.errors.push(ParserError { lo: start, hi: start, @@ -1196,7 +1195,7 @@ trimmed in raw strings. [foo.bar] #… -[[foo]] +[[foo]] # ... #… [foo.bar] #... -- cgit v1.2.3