ソースを参照

Xcode: Indent using tabs

Gregor Jasny 10 年 前
コミット
2e0e205e28
1 ファイル変更1 行追加1 行削除
  1. 1 1
      Source/cmXCodeObject.cxx

+ 1 - 1
Source/cmXCodeObject.cxx

@@ -81,7 +81,7 @@ void cmXCodeObject::Indent(int level, std::ostream& out)
 {
   while(level)
     {
-    out << "       ";
+    out << "\t";
     level--;
     }
 }