[Lldb-commits] [lldb] [lldb] Add config and decorator for wide character support in Editline (PR #66447)
Daniel Thornburgh via lldb-commits
lldb-commits at lists.llvm.org
Thu Sep 14 17:03:45 PDT 2023
================
@@ -781,6 +781,9 @@ SBStructuredData SBDebugger::GetBuildConfiguration() {
AddBoolConfigEntry(
*config_up, "editline", LLDB_ENABLE_LIBEDIT,
"A boolean value that indicates if editline support is enabled in LLDB");
+ AddBoolConfigEntry(
+ *config_up, "editline_wchar", LLDB_EDITLINE_USE_WCHAR,
+ "A boolean value that indicates if editline wide characters support is enabled in LLDB");
----------------
mysterymath wrote:
nit: extra space between "editline" and "wide"
https://github.com/llvm/llvm-project/pull/66447
More information about the lldb-commits
mailing list