Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 297717
Collapse All | Expand All

(-)util-linux-ng-2.17-rc3/text-utils/pg.c (-1 / +4 lines)
Lines 448-454 Link Here
448
			pos += TABSIZE - (pos % TABSIZE);
448
			pos += TABSIZE - (pos % TABSIZE);
449
			break;
449
			break;
450
		default:
450
		default:
451
			pos += wcwidth(*p);
451
			if (iswprint(*p))
452
				pos += wcwidth(*p);
453
			else
454
				pos += wcwidth(L'?');
452
		}
455
		}
453
		if (pos > col) {
456
		if (pos > col) {
454
			if (*p == L'\t')
457
			if (*p == L'\t')

Return to bug 297717