diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-04-08 21:10:03 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-04-08 21:10:03 +0000 |
commit | 8eb8d4251369a001e554b63a05cd428e844cc50f (patch) | |
tree | e22e26c470291c9b33ee5ca08838ec60706f3f9e /src/indent.c | |
parent | 607becabad17c626e7b578906be983d67fcd8db9 (diff) | |
download | emacs-8eb8d4251369a001e554b63a05cd428e844cc50f.tar.gz |
(Fmove_to_column): Fix minor bug in prev change.
Diffstat (limited to 'src/indent.c')
-rw-r--r-- | src/indent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indent.c b/src/indent.c index fa757f97676..b8d3db3b193 100644 --- a/src/indent.c +++ b/src/indent.c @@ -514,7 +514,7 @@ and if COLUMN is in the middle of a tab character, change it to spaces.") { col += XVECTOR (DISP_CHAR_VECTOR (dp, c))->size; pos++; - break; + continue; } if (c == '\n') break; |