Added show_char and attrs to ProfWin->print_line

This commit is contained in:
James Booth
2013-10-06 18:00:22 +01:00
parent fc8982e761
commit a527beabd3
4 changed files with 11 additions and 6 deletions

View File

@@ -824,7 +824,7 @@ ui_current_print_line(const char * const msg, ...)
ProfWin *current = wins_get_current();
va_list arg;
va_start(arg, msg);
current->print_line(current, msg, arg);
current->print_line(current, '-', 0, msg, arg);
va_end(arg);
current->refresh_win(current);
}