summaryrefslogtreecommitdiff
path: root/src/indent.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-09-23 12:45:50 +0000
committerJim Blandy <jimb@redhat.com>1992-09-23 12:45:50 +0000
commit474f3e61c9a607435345893efa14ab182e7ba4af (patch)
tree2572bcf0608642eaf1f862ae82cfee2414925a9b /src/indent.c
parentad7275ce68c05a92af48c2912d6cb202caea5fcf (diff)
downloademacs-474f3e61c9a607435345893efa14ab182e7ba4af.tar.gz
* indent.c (Fmove_to_column): Pass the right number of arguments
to Findent_to.
Diffstat (limited to 'src/indent.c')
-rw-r--r--src/indent.c5
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\
as displayed of the previous characters in the line.\n\
This function ignores line-continuation;\n\
there is no upper limit on the column number a character can have\n\
-and horizontal scrolling has no effect.\n\n\
+and horizontal scrolling has no effect.\n\
+\n\
If specified column is within a character, point goes after that character.\n\
If it's past end of line, point goes to end of line.\n\n\
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.")
/* If line ends prematurely, add space to the end. */
if (col < goal && !NILP (force))
- Findent_to (make_number (col = goal));
+ Findent_to (make_number (col = goal), Qnil);
last_known_column = col;
last_known_column_point = point;