diff options
Diffstat (limited to 'Inveigh/Support/Output.cs')
-rw-r--r-- | Inveigh/Support/Output.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Inveigh/Support/Output.cs b/Inveigh/Support/Output.cs index 926682c..d44c10f 100644 --- a/Inveigh/Support/Output.cs +++ b/Inveigh/Support/Output.cs @@ -796,6 +796,11 @@ namespace Inveigh { bool nullarg = true; + if (!string.IsNullOrEmpty(arg)) + { + nullarg = false; + } + Console.WriteLine(); if (nullarg) |