aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/indent.c4
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)
735DEFUN ("indent-to", Findent_to, Sindent_to, 1, 2, "NIndent to column: ", 735DEFUN ("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.
737Optional second argument MINIMUM says always do at least MINIMUM spaces 737Optional second argument MINIMUM says always do at least MINIMUM spaces
738even if that goes past COLUMN; by default, MINIMUM is zero. */) 738even if that goes past COLUMN; by default, MINIMUM is zero.
739
740The return value is COLUMN. */)
739 (column, minimum) 741 (column, minimum)
740 Lisp_Object column, minimum; 742 Lisp_Object column, minimum;
741{ 743{