Skip to content

Commit

Permalink
Missing case in Windows VT-100 translator
Browse files Browse the repository at this point in the history
The sequence [m was replaced with [0m in ocaml#3346 which required an
additional case in the VT-100 translator in OpamConsole. Not quite sure
how that was missed...
  • Loading branch information
dra27 committed Jul 21, 2018
1 parent 8fec11e commit e45f258
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/core/opamConsole.ml
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,7 @@ let win32_print_message ch msg =
blend 0b011
| "37" ->
blend 0b111
| "0"
| "" ->
blend ~inheritbold:false 0b0111
| _ -> assert false
Expand Down

0 comments on commit e45f258

Please sign in to comment.