diff options
| author | Eli Zaretskii | 2007-03-24 15:58:17 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2007-03-24 15:58:17 +0000 |
| commit | f64f035e75a781a9c53ba31b4330cb50c6d58a95 (patch) | |
| tree | 223e5c52a280aa8cbdbbeb10bf20408130a50339 /src | |
| parent | 6e5a4966d5d187cb5966c0b2db8ca2f7a06329b8 (diff) | |
| download | emacs-f64f035e75a781a9c53ba31b4330cb50c6d58a95.tar.gz emacs-f64f035e75a781a9c53ba31b4330cb50c6d58a95.zip | |
(Findent_to): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/indent.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/indent.c b/src/indent.c index a48b8b590e8..828267c3abf 100644 --- a/src/indent.c +++ b/src/indent.c | |||
| @@ -735,7 +735,9 @@ string_display_width (string, beg, end) | |||
| 735 | DEFUN ("indent-to", Findent_to, Sindent_to, 1, 2, "NIndent to column: ", | 735 | DEFUN ("indent-to", Findent_to, Sindent_to, 1, 2, "NIndent to column: ", |
| 736 | doc: /* Indent from point with tabs and spaces until COLUMN is reached. | 736 | doc: /* Indent from point with tabs and spaces until COLUMN is reached. |
| 737 | Optional second argument MINIMUM says always do at least MINIMUM spaces | 737 | Optional second argument MINIMUM says always do at least MINIMUM spaces |
| 738 | even if that goes past COLUMN; by default, MINIMUM is zero. */) | 738 | even if that goes past COLUMN; by default, MINIMUM is zero. |
| 739 | |||
| 740 | The return value is COLUMN. */) | ||
| 739 | (column, minimum) | 741 | (column, minimum) |
| 740 | Lisp_Object column, minimum; | 742 | Lisp_Object column, minimum; |
| 741 | { | 743 | { |