================
@@ -712,9 +712,10 @@ size_t SourceManager::File::DisplaySourceLines(
// If we should mark the stop column with color codes, then copy the prefix
// and suffix to our color style.
- if (should_show_stop_column_with_ansi(debugger_sp))
- style.selected.Set(debugger_sp->GetStopShowColumnAnsiPrefix(),
- debugger_sp->GetStopShowColumnAnsiSuffix());
+ if (should_show_stop_column_with_ansi(debugger_sp)) {
+ ColorSetting color = debugger_sp->GetStopShowColumnColor();
+ style.selected.Set(color.GetPrefix(), color.GetSuffix());
----------------
Teemperor wrote:
I had a bit of a déjà vu with this class and now I know why!
https://github.com/llvm/llvm-project/pull/210671
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits