[Lldb-commits] [PATCH] D61994: [CommandInterpreter] Refactor SourceInitFile
Jonas Devlieghere via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed May 15 23:31:40 PDT 2019
JDevlieghere marked 2 inline comments as done.
JDevlieghere added inline comments.
================
Comment at: lldb/source/Interpreter/CommandInterpreter.cpp:2118
+void CommandInterpreter::SourceInitFile(FileSpec file,
CommandReturnObject &result) {
+ if (!FileSystem::Instance().Exists(file)) {
----------------
This should also have an `assert(!m_skip_lldbinit_files);`
================
Comment at: lldb/source/Interpreter/CommandInterpreter.cpp:2163
+ result.AppendErrorWithFormat(
+ "There is a .lldbinit file in the current directory which is not "
+ "being read.\n"
----------------
This should be reflowed.
Repository:
rLLDB LLDB
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D61994/new/
https://reviews.llvm.org/D61994
More information about the lldb-commits
mailing list