diff --git a/README.md b/README.md index 437ccc6f0..f331bd6a0 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ found in [src/demo/](https://github.com/dankamongmen/notcurses/tree/master/src/d **If you're running Notcurses applications in a Docker, please consult "[Environment notes](#environment-notes)" below.** I track some -[capabilities of terminal emulators](TERMS.md), and also maintain a list of +[capabilities of terminal emulators](TERMINALS.md), and also maintain a list of [other TUI libraries](OTHERS.md). ![Linux](https://img.shields.io/badge/-Linux-grey?logo=linux) diff --git a/TERMS.md b/TERMINALS.md similarity index 100% rename from TERMS.md rename to TERMINALS.md diff --git a/src/demo/unicodeblocks.c b/src/demo/unicodeblocks.c index 664d159e8..d43001ea6 100644 --- a/src/demo/unicodeblocks.c +++ b/src/demo/unicodeblocks.c @@ -106,7 +106,7 @@ draw_block(struct ncplane* nn, uint32_t blockstart){ for(z = 0 ; z < CHUNKSIZE ; ++z){ wchar_t w = blockstart + chunk * CHUNKSIZE + z; char utf8arr[MB_CUR_MAX * 3 + 5]; - // problematic characters FIXME (see TERMS.md) + // problematic characters FIXME (see TERMINALS.md) if(w == 0x070f || w == 0x08e2 || w == 0x06dd){ strcpy(utf8arr, " "); }else if(wcwidth(w) >= 1 && iswgraph(w)){