summaryrefslogtreecommitdiff
path: root/src/indent.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-08-28 06:08:54 +0000
committerRichard M. Stallman <rms@gnu.org>1994-08-28 06:08:54 +0000
commit6d1bd1a58117f5af583d661e0ebce602e91e50ca (patch)
tree10ff482c44ba0276c12fa4fc1c8c2a3c8bc92d68 /src/indent.c
parentcd11ef314d82cf6d6ae494db0b2877da12559093 (diff)
(Findent_to): Pass new arg to Finsert_char.
Diffstat (limited to 'src/indent.c')
-rw-r--r--src/indent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/indent.c b/src/indent.c
index e90bc403288..4fc1c264816 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -206,14 +206,14 @@ even if that goes past COLUMN; by default, MIN is zero.")
XFASTINT (n) = mincol / tab_width - fromcol / tab_width;
if (XFASTINT (n) != 0)
{
- Finsert_char (make_number ('\t'), n);
+ Finsert_char (make_number ('\t'), n, Qt);
fromcol = (mincol / tab_width) * tab_width;
}
}
XFASTINT (col) = mincol - fromcol;
- Finsert_char (make_number (' '), col);
+ Finsert_char (make_number (' '), col, Qt);
last_known_column = mincol;
last_known_column_point = point;