diff --git a/Userland/Libraries/LibGUI/INILexer.cpp b/Userland/Libraries/LibGUI/INILexer.cpp index fd5ee1fd1f..333570ce68 100644 --- a/Userland/Libraries/LibGUI/INILexer.cpp +++ b/Userland/Libraries/LibGUI/INILexer.cpp @@ -75,8 +75,8 @@ Vector IniLexer::lex() continue; } - // ;Comment - if (ch == ';') { + // ;Comment or #Comment + if (ch == ';' || ch == '#') { begin_token(); while (peek() && peek() != '\n') consume();