r207947 - cindex-dump.py: fix the --show-ids description string

Alp Toker alp at nuanti.com
Sun May 4 21:42:26 PDT 2014


Author: alp
Date: Sun May  4 23:42:26 2014
New Revision: 207947

URL: http://llvm.org/viewvc/llvm-project?rev=207947&view=rev
Log:
cindex-dump.py: fix the --show-ids description string

It looks like this was botched back in r94936.

Modified:
    cfe/trunk/bindings/python/examples/cindex/cindex-dump.py

Modified: cfe/trunk/bindings/python/examples/cindex/cindex-dump.py
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/bindings/python/examples/cindex/cindex-dump.py?rev=207947&r1=207946&r2=207947&view=diff
==============================================================================
--- cfe/trunk/bindings/python/examples/cindex/cindex-dump.py (original)
+++ cfe/trunk/bindings/python/examples/cindex/cindex-dump.py Sun May  4 23:42:26 2014
@@ -63,7 +63,7 @@ def main():
 
     parser = OptionParser("usage: %prog [options] {filename} [clang-args*]")
     parser.add_option("", "--show-ids", dest="showIDs",
-                      help="Don't compute cursor IDs (very slow)",
+                      help="Compute cursor IDs (very slow)",
                       action="store_true", default=False)
     parser.add_option("", "--max-depth", dest="maxDepth",
                       help="Limit cursor expansion to depth N",





More information about the cfe-commits mailing list