[Lldb-commits] [lldb] r287862 - Remove \x13 (^S) character that was likely added by mistake.

Adrian Kuegel via lldb-commits lldb-commits at lists.llvm.org
Thu Nov 24 02:01:35 PST 2016


Author: akuegel
Date: Thu Nov 24 04:01:34 2016
New Revision: 287862

URL: http://llvm.org/viewvc/llvm-project?rev=287862&view=rev
Log:
Remove \x13 (^S) character that was likely added by mistake.

r287386 added a \x13 character inside a string literal. Most likely this
was by mistake, so remove it.

Differential Revision: https://reviews.llvm.org/D26973

Modified:
    lldb/trunk/source/Commands/CommandObjectThread.cpp

Modified: lldb/trunk/source/Commands/CommandObjectThread.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectThread.cpp?rev=287862&r1=287861&r2=287862&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectThread.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectThread.cpp Thu Nov 24 04:01:34 2016
@@ -979,7 +979,7 @@ public:
             "current or specified thread.  Stops when returning from "
             "the current function as a safety measure.  "
             "The target line number(s) are given as arguments, and if more than one"
-            " is provided, stepping will stop when the first one is hit.",
+            " is provided, stepping will stop when the first one is hit.",
             nullptr,
             eCommandRequiresThread | eCommandTryTargetAPILock |
                 eCommandProcessMustBeLaunched | eCommandProcessMustBePaused),




More information about the lldb-commits mailing list