From df252ed5514058c4a4e5059b7f962307251bfaa6 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 24 Nov 1993 23:41:42 +0000 Subject: (Fmove_to_column): Increments for control characters were too low by 1. --- src/indent.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/indent.c') diff --git a/src/indent.c b/src/indent.c index 569057d895a..96eccc262be 100644 --- a/src/indent.c +++ b/src/indent.c @@ -333,9 +333,9 @@ and if COLUMN is in the middle of a tab character, change it to spaces.") 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++; } -- cgit v1.2.1