aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-08-28 06:08:54 +0000
committerRichard M. Stallman1994-08-28 06:08:54 +0000
commit6d1bd1a58117f5af583d661e0ebce602e91e50ca (patch)
tree10ff482c44ba0276c12fa4fc1c8c2a3c8bc92d68 /src
parentcd11ef314d82cf6d6ae494db0b2877da12559093 (diff)
downloademacs-6d1bd1a58117f5af583d661e0ebce602e91e50ca.tar.gz
emacs-6d1bd1a58117f5af583d661e0ebce602e91e50ca.zip
(Findent_to): Pass new arg to Finsert_char.
Diffstat (limited to 'src')
-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.")
206 XFASTINT (n) = mincol / tab_width - fromcol / tab_width; 206 XFASTINT (n) = mincol / tab_width - fromcol / tab_width;
207 if (XFASTINT (n) != 0) 207 if (XFASTINT (n) != 0)
208 { 208 {
209 Finsert_char (make_number ('\t'), n); 209 Finsert_char (make_number ('\t'), n, Qt);
210 210
211 fromcol = (mincol / tab_width) * tab_width; 211 fromcol = (mincol / tab_width) * tab_width;
212 } 212 }
213 } 213 }
214 214
215 XFASTINT (col) = mincol - fromcol; 215 XFASTINT (col) = mincol - fromcol;
216 Finsert_char (make_number (' '), col); 216 Finsert_char (make_number (' '), col, Qt);
217 217
218 last_known_column = mincol; 218 last_known_column = mincol;
219 last_known_column_point = point; 219 last_known_column_point = point;