]> granicus.if.org Git - clang/commitdiff
Updated clang-format help messages for -offset and -length
authorAlexander Kornienko <alexfh@google.com>
Fri, 10 May 2013 13:18:17 +0000 (13:18 +0000)
committerAlexander Kornienko <alexfh@google.com>
Fri, 10 May 2013 13:18:17 +0000 (13:18 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@181593 91177308-0d34-0410-b5e6-96231b3b80d8

tools/clang-format/ClangFormat.cpp

index ea9482ea120cd1dcc642b2a85ebde4de7485a16e..ea70dafe03984f06b91cc013ca9db4cffa0dae3e 100644 (file)
@@ -28,13 +28,19 @@ using namespace llvm;
 
 static cl::opt<bool> Help("h", cl::desc("Alias for -help"), cl::Hidden);
 
-static cl::list<unsigned>
-Offsets("offset", cl::desc("Format a range starting at this byte offset. Can "
-                           "only be used with one input file."));
-static cl::list<unsigned>
-Lengths("length", cl::desc("Format a range of this length (in bytes). "
-                           "When it's not specified, end of file is used. "
-                           "Can only be used with one input file."));
+static cl::list<unsigned> Offsets(
+    "offset",
+    cl::desc(
+        "Format a range starting at this byte offset. Multiple ranges can be "
+        "formatted by specifying several -offset and -length pairs. Can "
+        "only be used with one input file."));
+static cl::list<unsigned> Lengths(
+    "length",
+    cl::desc("Format a range of this length (in bytes). Multiple ranges can be "
+             "formatted by specifying several -offset and -length pairs. When "
+             "only a single -offset is specified without -length, clang-format "
+             "will format up to the end of the file. Can only be used with one "
+             "input file."));
 static cl::opt<std::string> Style(
     "style",
     cl::desc(