mirror of
https://github.com/ilyakooo0/vty.git
synced 2024-11-25 19:22:08 +03:00
Config: make Semigroup instance take disjunction of allowCustomUnicodeWithTables values
This commit is contained in:
parent
9737f2b4ee
commit
59f90de8b2
@ -168,7 +168,8 @@ instance Semigroup Config where
|
||||
, outputFd = outputFd c1 <|> outputFd c0
|
||||
, termName = termName c1 <|> termName c0
|
||||
, termWidthMaps = termWidthMaps c1 <|> termWidthMaps c0
|
||||
, allowCustomUnicodeWithTables = allowCustomUnicodeWithTables c1
|
||||
, allowCustomUnicodeWithTables =
|
||||
allowCustomUnicodeWithTables c0 || allowCustomUnicodeWithTables c1
|
||||
}
|
||||
|
||||
instance Monoid Config where
|
||||
|
Loading…
Reference in New Issue
Block a user