# HG changeset patch # User Eli Zaretskii # Date 1170539694 0 # Node ID bd6d4488b99041735caebd1e0f7a8cb0a9995556 # Parent 16e7738bd009052641c783292fd12e8821797ab9 (Fmove_to_column): Document that the argument COLUMN is taken from prefix numeric argument. diff -r 16e7738bd009 -r bd6d4488b990 src/indent.c --- a/src/indent.c Sat Feb 03 21:53:58 2007 +0000 +++ b/src/indent.c Sat Feb 03 21:54:54 2007 +0000 @@ -909,6 +909,7 @@ DEFUN ("move-to-column", Fmove_to_column, Smove_to_column, 1, 2, "p", doc: /* Move point to column COLUMN in the current line. +Interactively, COLUMN is the value of prefix numeric argument. The column of a character is calculated by adding together the widths as displayed of the previous characters in the line. This function ignores line-continuation; @@ -918,10 +919,10 @@ If specified column is within a character, point goes after that character. If it's past end of line, point goes to end of line. -A non-nil second (optional) argument FORCE means, -if COLUMN is in the middle of a tab character, change it to spaces. -In addition, if FORCE is t, and the line is too short -to reach column COLUMN, add spaces/tabs to get there. +Optional second argument FORCE non-nil means if COLUMN is in the +middle of a tab character, change it to spaces. +In addition, if FORCE is t, and the line is too short to reach +COLUMN, add spaces/tabs to get there. The return value is the current column. */) (column, force)