mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-10-31 15:20:13 +00:00
uniblock: only emit U+200E when necessary
This commit is contained in:
parent
8b072c0b5f
commit
b63cad270f
@ -4,6 +4,7 @@
|
||||
#include <unistd.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <unictype.h>
|
||||
#include "demo.h"
|
||||
|
||||
// show unicode blocks. a block is always a multiple of 16 codepoints.
|
||||
@ -74,9 +75,11 @@ draw_block(struct ncplane* nn, uint32_t blockstart){
|
||||
if(wcwidth(w) < 2){
|
||||
utf8arr[bwc++] = ' ';
|
||||
}
|
||||
utf8arr[bwc++] = 0xe2;
|
||||
utf8arr[bwc++] = 0x80;
|
||||
utf8arr[bwc++] = 0x8e;
|
||||
if(uc_bidi_category(w)){
|
||||
utf8arr[bwc++] = 0xe2;
|
||||
utf8arr[bwc++] = 0x80;
|
||||
utf8arr[bwc++] = 0x8e;
|
||||
}
|
||||
utf8arr[bwc++] = '\0';
|
||||
}else{ // don't dump non-printing codepoints
|
||||
strcpy(utf8arr, " ");
|
||||
|
Loading…
Reference in New Issue
Block a user