# HG changeset patch # User Richard M. Stallman # Date 1176076759 0 # Node ID 50bb3d12f1b1e8407ed226f6ce2d1884959ec67c # Parent 1ab9d1057ad095b2f899edae893e72785139ff7b (Fmove_to_column): Set next_boundary with correct start pt. diff -r 1ab9d1057ad0 -r 50bb3d12f1b1 src/indent.c --- a/src/indent.c Sun Apr 08 22:02:42 2007 +0000 +++ b/src/indent.c Sun Apr 08 23:59:19 2007 +0000 @@ -951,7 +951,6 @@ pos = PT; pos_byte = PT_BYTE; end = ZV; - next_boundary = pos; /* If we're starting past the desired column, back up to beginning of line and scan from there. */ @@ -963,6 +962,8 @@ col = 0; } + next_boundary = pos; + while (pos < end) { while (pos == next_boundary)