Mercurial > emacs
changeset 1208:fa662930e654
* indent.c (Fmove_to_column): Pass the right number of arguments
to Findent_to.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Wed, 23 Sep 1992 12:45:50 +0000 |
parents | af619d68a576 |
children | 1aa2cd425737 |
files | src/indent.c |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/indent.c Wed Sep 23 11:51:59 1992 +0000 +++ b/src/indent.c Wed Sep 23 12:45:50 1992 +0000 @@ -277,7 +277,8 @@ 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 @@ /* 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;