aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2003-09-19 14:43:24 +0000
committerRichard M. Stallman2003-09-19 14:43:24 +0000
commit2b42d12a37c0a7b520f68ccb7724322f4708acd2 (patch)
tree54848f728f75395190eade5de7d857a475760c26
parent1994c2a79c0391dde6f3463202be7d145c4071eb (diff)
downloademacs-2b42d12a37c0a7b520f68ccb7724322f4708acd2.tar.gz
emacs-2b42d12a37c0a7b520f68ccb7724322f4708acd2.zip
(Motion by Indent): Arg to backward-to-indentation and
forward-to-indentation is optional.
-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