diff options
| author | Jim Blandy | 1992-09-23 12:45:50 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-09-23 12:45:50 +0000 |
| commit | 230a4cbd80a0423b12177a568f523da4acb70ada (patch) | |
| tree | 3fd4a7ed320aad010fbf8da9757efced655ec97c /src | |
| parent | 63528b78dd8017483c06e785dae100c9af6844e6 (diff) | |
| download | emacs-230a4cbd80a0423b12177a568f523da4acb70ada.tar.gz emacs-230a4cbd80a0423b12177a568f523da4acb70ada.zip | |
* indent.c (Fmove_to_column): Pass the right number of arguments
to Findent_to.
Diffstat (limited to 'src')
| -rw-r--r-- | src/indent.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/indent.c b/src/indent.c index cdd9ad8b20c..d80ddd3891f 100644 --- a/src/indent.c +++ b/src/indent.c | |||
| @@ -277,7 +277,8 @@ The column of a character is calculated by adding together the widths\n\ | |||
| 277 | as displayed of the previous characters in the line.\n\ | 277 | as displayed of the previous characters in the line.\n\ |
| 278 | This function ignores line-continuation;\n\ | 278 | This function ignores line-continuation;\n\ |
| 279 | there is no upper limit on the column number a character can have\n\ | 279 | there is no upper limit on the column number a character can have\n\ |
| 280 | and horizontal scrolling has no effect.\n\n\ | 280 | and horizontal scrolling has no effect.\n\ |
| 281 | \n\ | ||
| 281 | If specified column is within a character, point goes after that character.\n\ | 282 | If specified column is within a character, point goes after that character.\n\ |
| 282 | If it's past end of line, point goes to end of line.\n\n\ | 283 | If it's past end of line, point goes to end of line.\n\n\ |
| 283 | A non-nil second (optional) argument FORCE means, if the line\n\ | 284 | A non-nil second (optional) argument FORCE means, if the line\n\ |
| @@ -355,7 +356,7 @@ and if COLUMN is in the middle of a tab character, change it to spaces.") | |||
| 355 | 356 | ||
| 356 | /* If line ends prematurely, add space to the end. */ | 357 | /* If line ends prematurely, add space to the end. */ |
| 357 | if (col < goal && !NILP (force)) | 358 | if (col < goal && !NILP (force)) |
| 358 | Findent_to (make_number (col = goal)); | 359 | Findent_to (make_number (col = goal), Qnil); |
| 359 | 360 | ||
| 360 | last_known_column = col; | 361 | last_known_column = col; |
| 361 | last_known_column_point = point; | 362 | last_known_column_point = point; |