[Lldb-commits] [lldb] ba21376 - [Command] Fix accidental word concatenation in Options.td
Vedant Kumar via lldb-commits
lldb-commits at lists.llvm.org
Tue Nov 10 16:16:01 PST 2020
Author: Vedant Kumar
Date: 2020-11-10T16:13:39-08:00
New Revision: ba21376883d4527204ab6716597ca179e0b76157
URL: https://github.com/llvm/llvm-project/commit/ba21376883d4527204ab6716597ca179e0b76157
DIFF: https://github.com/llvm/llvm-project/commit/ba21376883d4527204ab6716597ca179e0b76157.diff
LOG: [Command] Fix accidental word concatenation in Options.td
Split up words that appear to have been accidentally concatenated.
This looks to be exhaustive: to find these in vim, use:
/\v[^ ]"\n +"[^ ]
Added:
Modified:
lldb/source/Commands/Options.td
Removed:
################################################################################
diff --git a/lldb/source/Commands/Options.td b/lldb/source/Commands/Options.td
index 0be497e4759e..7522f47ca57d 100644
--- a/lldb/source/Commands/Options.td
+++ b/lldb/source/Commands/Options.td
@@ -372,7 +372,7 @@ let Command = "expression" in {
"top-level entities without a $ prefix.">;
def expression_options_allow_jit : Option<"allow-jit", "j">, Groups<[1,2]>,
Arg<"Boolean">,
- Desc<"Controls whether the expression can fall back to being JITted if it's"
+ Desc<"Controls whether the expression can fall back to being JITted if it's "
"not supported by the interpreter (defaults to true).">;
}
@@ -952,7 +952,7 @@ let Command = "thread step scope" in {
EnumArg<"RunMode", "TriRunningModes()">, Desc<"Determine how to run other "
"threads while stepping the current thread.">;
def thread_step_scope_step_over_regexp : Option<"step-over-regexp", "r">,
- Group<1>, Arg<"RegularExpression">, Desc<"A regular expression that defines"
+ Group<1>, Arg<"RegularExpression">, Desc<"A regular expression that defines "
"function names to not to stop at when stepping in.">;
def thread_step_scope_step_in_target : Option<"step-in-target", "t">,
Group<1>, Arg<"FunctionName">, Desc<"The name of the directly called "
@@ -965,10 +965,10 @@ let Command = "thread until" in {
def thread_until_thread : Option<"thread", "t">, Group<1>, Arg<"ThreadIndex">,
Desc<"Thread index for the thread for until operation">;
def thread_until_run_mode : Option<"run-mode", "m">, Group<1>,
- EnumArg<"RunMode", "DuoRunningModes()">, Desc<"Determine how to run other"
+ EnumArg<"RunMode", "DuoRunningModes()">, Desc<"Determine how to run other "
"threads while stepping this one">;
def thread_until_address : Option<"address", "a">, Group<1>,
- Arg<"AddressOrExpression">, Desc<"Run until we reach the specified address,"
+ Arg<"AddressOrExpression">, Desc<"Run until we reach the specified address, "
"or leave the function - can be specified multiple times.">;
}
@@ -1158,7 +1158,7 @@ let Command = "watchpoint list" in {
"brief description of the watchpoint (no location info).">;
def watchpoint_list_full : Option<"full", "f">, Group<2>, Desc<"Give a full "
"description of the watchpoint and its locations.">;
- def watchpoint_list_verbose : Option<"verbose", "v">, Group<3>, Desc<"Explain"
+ def watchpoint_list_verbose : Option<"verbose", "v">, Group<3>, Desc<"Explain "
"everything we know about the watchpoint (for debugging debugger bugs).">;
}
More information about the lldb-commits
mailing list