comparison src/indent.c @ 11312:f48922d85166

(Fmove_to_column): Fix minor bug in prev change.
author Richard M. Stallman <rms@gnu.org>
date Sat, 08 Apr 1995 21:10:03 +0000
parents 474b17d364db
children 6c9716b7a23d
comparison
equal deleted inserted replaced
11311:864c3dea8754 11312:f48922d85166
512 c = FETCH_CHAR (pos); 512 c = FETCH_CHAR (pos);
513 if (dp != 0 && VECTORP (DISP_CHAR_VECTOR (dp, c))) 513 if (dp != 0 && VECTORP (DISP_CHAR_VECTOR (dp, c)))
514 { 514 {
515 col += XVECTOR (DISP_CHAR_VECTOR (dp, c))->size; 515 col += XVECTOR (DISP_CHAR_VECTOR (dp, c))->size;
516 pos++; 516 pos++;
517 break; 517 continue;
518 } 518 }
519 if (c == '\n') 519 if (c == '\n')
520 break; 520 break;
521 if (c == '\r' && EQ (current_buffer->selective_display, Qt)) 521 if (c == '\r' && EQ (current_buffer->selective_display, Qt))
522 break; 522 break;