Hi Alex, On Mon, Nov 8, 2021 at 3:18 PM Clark Wang <dearv...@gmail.com> wrote: > > Hi, > > I found a small issue where multiple -U options did not work. The > following patch fixed it for me. Just FYI.
Has this been fixed? > > -clark > > > > diff --git a/src/screen.c b/src/screen.c > index f25f7fb..8aa3a1a 100644 > --- a/src/screen.c > +++ b/src/screen.c > @@ -793,7 +793,7 @@ int main(int ac, char** av) > > #ifdef UTF8 > case 'U': > - nwin_options.encoding = nwin_options.encoding == -1 ? UTF8 : 0; > + nwin_options.encoding = UTF8; > break; > #endif