# HG changeset patch # User Kim F. Storm # Date 1124204296 0 # Node ID 74ab28cf11928aa31dbeabe61516c15e2801fa35 # Parent 95ce0b21684b5ce7608be96efa57e0e0b517d9ad (increment_row_positions): Skip non-enabled rows. diff -r 95ce0b21684b -r 74ab28cf1192 src/dispnew.c --- a/src/dispnew.c Tue Aug 16 14:57:30 2005 +0000 +++ b/src/dispnew.c Tue Aug 16 14:58:16 2005 +0000 @@ -1185,6 +1185,9 @@ MATRIX_ROW_END_CHARPOS (row) += delta; MATRIX_ROW_END_BYTEPOS (row) += delta_bytes; + if (!row->enabled_p) + return; + /* Increment positions in glyphs. */ for (area = 0; area < LAST_AREA; ++area) for (i = 0; i < row->used[area]; ++i)