leahneukirchen / mblaze

Unix utilities to deal with Maildir
Other
419 stars 48 forks source link

`mlist -s ~/mail/INBOX | msort -d | mscan` crashes my terminal. #224

Closed jgarte closed 2 years ago

jgarte commented 2 years ago

mlist -s ~/mail/INBOX | msort -d | mscan fro the README crashes my terminal.

Any idea what might cause this or how to debug it?

leahneukirchen commented 2 years ago

mscan should escape all invalid UTF-8 uses, so this is interesting. Which terminal emulator is it?

jgarte commented 2 years ago

@leahneukirchen

st packaged in void-packages:

https://github.com/void-linux/void-packages/tree/master/srcpkgs/st

leahneukirchen commented 2 years ago

It's probably this long-standing st/Xft issue: http://git.suckless.org/st/file/FAQ.html#l224

To reproduce, try

printf '\xf0\x9f\x9b\x91\n'

Close the issue when this crashes st, it's not related to mblaze then. ;)

jgarte commented 2 years ago

Yup, that was it! Thanks for helping me debug that. Much appreciated!