Mercurial > emacs
changeset 5162:9672138155c1
(Fmove_to_column): Increments for control characters
were too low by 1.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 24 Nov 1993 23:41:42 +0000 |
parents | 62c2601563c4 |
children | 220ec2f456e0 |
files | src/indent.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/indent.c Wed Nov 24 22:42:25 1993 +0000 +++ b/src/indent.c Wed Nov 24 23:41:42 1993 +0000 @@ -333,9 +333,9 @@ else if (dp != 0 && XTYPE (DISP_CHAR_VECTOR (dp, c)) == Lisp_Vector) col += XVECTOR (DISP_CHAR_VECTOR (dp, c))->size; else if (ctl_arrow && (c < 040 || c == 0177)) - col++; + col += 2; else if (c < 040 || c >= 0177) - col += 3; + col += 4; else col++; }