Re: [GSoC Patch 0/2] add unicode support to git repo structure
Tuomas Ahola <[email protected]>
| Newsgroups | org.kernel.vger.git |
|---|---|
| Message-ID | <20260823170645.rBeci%[email protected]> |
Oswald Buddenhagen <[email protected]> wrote: > i can instantly think of two popular applications i'm using every day > which use box drawing chars: mutt (thread and attachment tree displays) > and midnight commander (panel/dialog frames). if "often" above were > accurate, these projects would be getting a lot of complaints about > that, which they don't. > Hmm, mutt seems to use ACS (alternative character set) as a fallback option: ``` else if (Charset_is_utf8) addstr("\342\224\224"); /* WACS_LLCORNER */ else addch(ACS_LLCORNER); ``` How relevant that is to us, I don't know, but perhaps something to think about. -- Tuomas