mirror of
https://github.com/irssi/irssi.git
synced 2026-08-09 03:40:16 +02:00
Add common IS_PRINTABLE macro.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4474 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
b8380772e2
commit
7c84b6fc2e
4 changed files with 5 additions and 5 deletions
|
|
@ -451,7 +451,7 @@ static int view_line_draw(TEXT_BUFFER_VIEW_REC *view, LINE_REC *line,
|
|||
|
||||
xpos += char_width;
|
||||
if (xpos <= term_width) {
|
||||
if ((chr & ~0x80) >= 32) {
|
||||
if (IS_PRINTABLE(chr)) {
|
||||
for (; text < end; text++)
|
||||
term_addch(view->window, *text);
|
||||
term_addch(view->window, *text);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue