1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-02-02 15:09:23 -05:00

draw_line: Make it more obvious that line points into an array.

This commit is contained in:
Kalle Olavi Niemitalo 2007-01-24 23:15:07 +02:00 committed by Kalle Olavi Niemitalo
parent 3b7c021254
commit 34c636026d

View File

@ -155,7 +155,7 @@ draw_line(struct terminal *term, int x, int y, int l, struct screen_char *line)
if (term->utf8) {
struct screen_char *sc;
if (line->data == UCS_NO_CHAR && x == 0) {
if (line[0].data == UCS_NO_CHAR && x == 0) {
unicode_val_T data_save;
sc = line;