Browse Source

Xcode: Indent using tabs

Gregor Jasny 10 năm trước cách đây
mục cha
commit
2e0e205e28
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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--;
     }
 }