Rename IS_PRINTABLE macro to unichar_isprint and move it to utf8.h.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4534 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Emanuele Giaquinta 2007-05-31 13:19:05 +00:00 committed by exg
commit d3687d8a97
4 changed files with 4 additions and 4 deletions

View file

@ -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 (IS_PRINTABLE(chr)) {
if (unichar_isprint(chr)) {
for (; text < end; text++)
term_addch(view->window, *text);
term_addch(view->window, *text);