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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGert Driesen <drieseng@users.sourceforge.net>2005-06-04 17:55:23 +0400
committerGert Driesen <drieseng@users.sourceforge.net>2005-06-04 17:55:23 +0400
commitf3f823c46a64a52d536c49afb888f0e419adbca8 (patch)
treefe81d11960e7ab70fc578cde4f9717f097c42601 /mcs/class/System/System.CodeDom.Compiler/IndentedTextWriter.cs
parent95a2deb1e09b181fcbb09b911d8ab6061937cb7c (diff)
* IndentedTextWriter.cs: also output tabs in WriteLine () to match MS.NET.
svn path=/trunk/mcs/; revision=45401
Diffstat (limited to 'mcs/class/System/System.CodeDom.Compiler/IndentedTextWriter.cs')
-rw-r--r--mcs/class/System/System.CodeDom.Compiler/IndentedTextWriter.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/mcs/class/System/System.CodeDom.Compiler/IndentedTextWriter.cs b/mcs/class/System/System.CodeDom.Compiler/IndentedTextWriter.cs
index 68c04adb22c..c823093aafe 100644
--- a/mcs/class/System/System.CodeDom.Compiler/IndentedTextWriter.cs
+++ b/mcs/class/System/System.CodeDom.Compiler/IndentedTextWriter.cs
@@ -191,6 +191,7 @@ namespace System.CodeDom.Compiler {
public override void WriteLine()
{
+ OutputTabs();
writer.WriteLine();
newline = true;
}