From f014eb7052082f7a6760dbd2aec9204b0cb4e1dc Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Thu, 25 May 2017 08:30:49 +0100 Subject: Fix command parsing bug when commenting after a command When a comment was present directly on the same line after a command, we did not correctly see the command as terminated and would join continue parsing the next line. --- src/command_manager.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/command_manager.cc') diff --git a/src/command_manager.cc b/src/command_manager.cc index 2af06c76..e2294b37 100644 --- a/src/command_manager.cc +++ b/src/command_manager.cc @@ -193,8 +193,8 @@ void skip_blanks_and_comments(Reader& reader) ++(++reader); else if (c == '#') { - for (bool eol = false; reader and not eol; ++reader) - eol = *reader == '\n'; + while (reader and *reader != '\n') + ++reader; } else break; -- cgit v1.2.3