aboutsummaryrefslogtreecommitdiffstats
path: root/src/indent.c
diff options
context:
space:
mode:
authorMiles Bader <[email protected]>2007-02-13 12:14:16 +0000
committerMiles Bader <[email protected]>2007-02-13 12:14:16 +0000
commit18c36727661b0db59afb9311cd363902712b5f21 (patch)
tree8af3ead70599b166c87c8d55d372590b7b50dea5 /src/indent.c
parent2658843ecafae493a461232249a53f86f85a10d8 (diff)
parent409d26134b3de40bac01dffab971ed18014ae355 (diff)
Merge from emacs--devo--0
Patches applied: * emacs--devo--0 (patch 624-636) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 200-201) - Merge from emacs--devo--0 - Update from CVS: lisp/nnweb.el (nnweb-google-parse-1): Update parser. Revision: [email protected]/emacs--unicode--0--patch-171
Diffstat (limited to 'src/indent.c')
-rw-r--r--src/indent.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/indent.c b/src/indent.c
index 429c2722a1..23ec6d5193 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -909,6 +909,7 @@ indented_beyond_p (pos, pos_byte, column)
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 @@ and horizontal scrolling has no effect.
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)