aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1995-04-08 21:10:03 +0000
committerRichard M. Stallman1995-04-08 21:10:03 +0000
commit0088a46e472a67523489ee63f95df9f71d4c0454 (patch)
treec53f9b69cd80322f4bd5bf4d85074631c27ec139 /src
parentc478f98c692d4d43860da2836352d81c0beca5a7 (diff)
downloademacs-0088a46e472a67523489ee63f95df9f71d4c0454.tar.gz
emacs-0088a46e472a67523489ee63f95df9f71d4c0454.zip
(Fmove_to_column): Fix minor bug in prev change.
Diffstat (limited to 'src')
-rw-r--r--src/indent.c2
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.")
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;