From 65e94963f590968569eff8c6e6b7e16bcada28dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Kr=C3=BCger?= Date: Fri, 24 Apr 2009 04:51:07 +0000 Subject: [PATCH] * Src/Lexer/AbstractLexer.cs: Allow white spaces as symbol separator. git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@4007 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61 --- src/Libraries/NRefactory/Project/Src/Lexer/AbstractLexer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;