aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lispref/text.texi6
1 files changed, 4 insertions, 2 deletions
diff --git a/lispref/text.texi b/lispref/text.texi
index 3016e3c93d7..77a457cadd8 100644
--- a/lispref/text.texi
+++ b/lispref/text.texi
@@ -2232,16 +2232,18 @@ current line (which is the line in which point is located). It returns
2232@code{nil}. 2232@code{nil}.
2233@end deffn 2233@end deffn
2234 2234
2235@deffn Command backward-to-indentation arg 2235@deffn Command backward-to-indentation &optional arg
2236@comment !!SourceFile simple.el 2236@comment !!SourceFile simple.el
2237This command moves point backward @var{arg} lines and then to the 2237This command moves point backward @var{arg} lines and then to the
2238first nonblank character on that line. It returns @code{nil}. 2238first nonblank character on that line. It returns @code{nil}.
2239If @var{arg} is omitted or @code{nil}, it defaults to 1.
2239@end deffn 2240@end deffn
2240 2241
2241@deffn Command forward-to-indentation arg 2242@deffn Command forward-to-indentation &optional arg
2242@comment !!SourceFile simple.el 2243@comment !!SourceFile simple.el
2243This command moves point forward @var{arg} lines and then to the first 2244This command moves point forward @var{arg} lines and then to the first
2244nonblank character on that line. It returns @code{nil}. 2245nonblank character on that line. It returns @code{nil}.
2246If @var{arg} is omitted or @code{nil}, it defaults to 1.
2245@end deffn 2247@end deffn
2246 2248
2247@node Case Changes 2249@node Case Changes