diff options
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 | { |