Upon attempting to render Unicode 1f596, st exits. To reproduce, compile and run the attached test or send the same codepoint to the screen via any other means.
I'm running Fedora 25 (up-to-date) and st HEAD. Google Noto fonts are installed. (I mention the latter because st loads one of these fonts, NotoColorEmoji.ttf, just before rendering fails.) See attached strace excerpt. -- A language that doesn't affect the way you think about programming is not worth knowing.
#include <unistd.h> int main(int argc, char *argv[]) { /* Unicode 1f596 as UTF-8 */ write(1, "\xf0\x9f\x96\x96\n", 5); }
pselect6(6, [3 5], NULL, NULL, {tv_sec=0, tv_nsec=8333333}, {NULL, 8}) = 1 (in [5], left {tv_sec=0, tv_nsec=6192372}) read(5, "\33[J", 8192) = 3 recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) open("/usr/share/fonts/google-noto-emoji/NotoColorEmoji.ttf", O_RDONLY) = 6 fcntl(6, F_SETFD, FD_CLOEXEC) = 0 fstat(6, {st_mode=S_IFREG|0644, st_size=4742308, ...}) = 0 mmap(NULL, 4742308, PROT_READ, MAP_PRIVATE, 6, 0) = 0x7fb84d328000 close(6) = 0 brk(NULL) = 0x1db3000 brk(0x1dd7000) = 0x1dd7000 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}]) writev(3, [{iov_base="\212\32\t\0\1\0\1\0\16\0 \1\0\0\0\0\0\0\377\377\0\0\35\0\2\0\33\0\2\0\35\0"..., iov_len=96}, {iov_base="\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., iov_len=17408}, {iov_base="", iov_len=0}], 3) = 17504 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLIN|POLLOUT}]) recvmsg(3, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\20t\4\24\0 \1\24\0\212\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", iov_len=4096}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 32 writev(3, [{iov_base="\212\30\n\0\3\0\1\0\20\0 \1\16\0 \1#\0\0\0\24\0 \1\0\0\0\0\1\0\0\0"..., iov_len=11620}, {iov_base=NULL, iov_len=0}, {iov_base="", iov_len=0}], 3) = 11620 open("/usr/share/X11/XErrorDB", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=42077, ...}) = 0 read(6, "!\n! Copyright 1993, 1995, 1998 "..., 42077) = 42077 close(6) = 0 brk(NULL) = 0x1dd7000 brk(0x1df8000) = 0x1df8000 write(2, "X Error of failed request: BadL"..., 95) = 95 write(2, "Major opcode of failed request: "..., 36) = 36 write(2, " (RENDER)\n", 10) = 10 write(2, " ", 2) = 2 write(2, "Minor opcode of failed request: "..., 35) = 35 write(2, " (RenderAddGlyphs)", 18) = 18 write(2, "\n", 1) = 1 write(2, " ", 2) = 2 write(2, "Serial number of failed request:"..., 38) = 38 write(2, "\n ", 3) = 3 write(2, "Current serial number in output "..., 45) = 45 write(2, "\n", 1) = 1 exit_group(1) = ? +++ exited with 1 +++