aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2007-03-24 15:58:17 +0000
committerEli Zaretskii2007-03-24 15:58:17 +0000
commitf64f035e75a781a9c53ba31b4330cb50c6d58a95 (patch)
tree223e5c52a280aa8cbdbbeb10bf20408130a50339 /src
parent6e5a4966d5d187cb5966c0b2db8ca2f7a06329b8 (diff)
downloademacs-f64f035e75a781a9c53ba31b4330cb50c6d58a95.tar.gz
emacs-f64f035e75a781a9c53ba31b4330cb50c6d58a95.zip
(Findent_to): Doc fix.
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{