diff --git a/src/Libraries/NRefactory/Project/Src/Lexer/AbstractLexer.cs b/src/Libraries/NRefactory/Project/Src/Lexer/AbstractLexer.cs index cd12ab36bd..3ae6d5b6c0 100644 --- a/src/Libraries/NRefactory/Project/Src/Lexer/AbstractLexer.cs +++ b/src/Libraries/NRefactory/Project/Src/Lexer/AbstractLexer.cs @@ -49,7 +49,7 @@ namespace ICSharpCode.NRefactory.Parser protected static IEnumerable GetSymbols (string symbols) { if (!string.IsNullOrEmpty(symbols)) { - foreach (string symbol in symbols.Split (';')) { + foreach (string symbol in symbols.Split (';', ' ', '\t')) { string s = symbol.Trim (); if (s.Length == 0) continue;