Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLluis Sanchez <lluis@novell.com>2009-11-10 18:21:10 +0300
committerLluis Sanchez <lluis@novell.com>2009-11-10 18:21:10 +0300
commitdc19f3032fe5a94078bcba8a5c471b6dace5a3ef (patch)
tree80b4e481caf9e31ab62df15d0aee1d7e77119966 /main/src/addins/ILAsmBinding/ILAsmCompilerManager.cs
parent8ec48364ada893db3e44120e445daf25f169ddaa (diff)
* ILAsmCompilerManager.cs: Minor fix in error parsing.
svn path=/trunk/monodevelop/; revision=145840
Diffstat (limited to 'main/src/addins/ILAsmBinding/ILAsmCompilerManager.cs')
-rw-r--r--main/src/addins/ILAsmBinding/ILAsmCompilerManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/addins/ILAsmBinding/ILAsmCompilerManager.cs b/main/src/addins/ILAsmBinding/ILAsmCompilerManager.cs
index f980bc206d..7abe23c349 100644
--- a/main/src/addins/ILAsmBinding/ILAsmCompilerManager.cs
+++ b/main/src/addins/ILAsmBinding/ILAsmCompilerManager.cs
@@ -221,7 +221,7 @@ namespace ILAsmBinding
return exitCode;
}
- static Regex regexError = new Regex (@"^(\s*(?<file>.*)\s?\((?<line>\d*)(,\s(?<column>\d*[\+]*))?\)\s(:|)\s+)*(?<level>\w+)\s*(:|(--))\s*(?<message>.*)", RegexOptions.Compiled | RegexOptions.ExplicitCapture);
+ static Regex regexError = new Regex (@"^(\s*(?<file>.*?)\s?\((?<line>\d*)(,\s(?<column>\d*[\+]*))?\)\s(:|)\s+)*(?<level>\w+)\s*(:|(--))\s*(?<message>.*)", RegexOptions.Compiled | RegexOptions.ExplicitCapture);
static BuildError CreateErrorFromString (string error_string)
{
// When IncludeDebugInformation is true, prevents the debug symbols stats from breaking this.