diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/indent.c | 4 |
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; |