mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-06-01 04:46:51 +08:00
[supervision] color regex on "error:" and "error "
To avoid false coloring, match only on "error" folowed by colon or space closes #910
This commit is contained in:
@@ -204,7 +204,7 @@ let () =
|
||||
let buffer = GText.buffer ~tag_table () in
|
||||
gui#console#set_buffer buffer;
|
||||
|
||||
let errors = "red", ["error"; "no such file"; "undefined reference"; "failure"; "multiple definition"]
|
||||
let errors = "red", ["error:"; "error "; "no such file"; "undefined reference"; "failure"; "multiple definition"]
|
||||
and warnings = "orange", ["warning"]
|
||||
and info = "green", ["pragma message"]
|
||||
and version = "cyan", ["paparazzi version"; "build aircraft"] in
|
||||
|
||||
Reference in New Issue
Block a user