Skip to content
This repository has been archived by the owner on Feb 8, 2018. It is now read-only.

Commit

Permalink
2009-01-15 Martin Baulig <martin@ximian.com>
Browse files Browse the repository at this point in the history
	* classes/DebuggerOptions.cs
	(DebuggerOptions.ParseOption): Provide more meaningful error
	message if unknown `-debug-flags' arguments were given.


svn path=/trunk/debugger/; revision=123464
  • Loading branch information
Martin Baulig committed Jan 15, 2009
1 parent 24a4c76 commit ac81c01
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion ChangeLog
@@ -1,6 +1,8 @@
2009-01-15 Martin Baulig <martin@ximian.com>

*
* classes/DebuggerOptions.cs
(DebuggerOptions.ParseOption): Provide more meaningful error
message if unknown `-debug-flags' arguments were given.

2009-01-08 Martin Baulig <martin@ximian.com>

Expand Down
2 changes: 1 addition & 1 deletion classes/DebuggerOptions.cs
Expand Up @@ -410,7 +410,7 @@ void SetupXSP ()
case "-debug-flags":
value = GetValue (ref args, ref i, ms_value);
if (!ParseDebugFlags (debug_options, value)) {
Usage ();
Console.WriteLine ("Unknown -debug-flags argument: {0}", ms_value);
Environment.Exit (1);
}
return true;
Expand Down

0 comments on commit ac81c01

Please sign in to comment.