]> code.delx.au - gnu-emacs/commitdiff
(Motion by Indent): Arg to backward-to-indentation and
authorRichard M. Stallman <rms@gnu.org>
Fri, 19 Sep 2003 14:43:24 +0000 (14:43 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 19 Sep 2003 14:43:24 +0000 (14:43 +0000)
forward-to-indentation is optional.

lispref/text.texi

index 3016e3c93d7fda81d903b3b7e0053ede4d0da83c..77a457cadd8b3b9bbd03f0bb268f48994b57cbe5 100644 (file)
@@ -2232,16 +2232,18 @@ current line (which is the line in which point is located).  It returns
 @code{nil}.
 @end deffn
 
-@deffn Command backward-to-indentation arg
+@deffn Command backward-to-indentation &optional arg
 @comment !!SourceFile simple.el
 This command moves point backward @var{arg} lines and then to the
 first nonblank character on that line.  It returns @code{nil}.
+If @var{arg} is omitted or @code{nil}, it defaults to 1.
 @end deffn
 
-@deffn Command forward-to-indentation arg
+@deffn Command forward-to-indentation &optional arg
 @comment !!SourceFile simple.el
 This command moves point forward @var{arg} lines and then to the first
 nonblank character on that line.  It returns @code{nil}.
+If @var{arg} is omitted or @code{nil}, it defaults to 1.
 @end deffn
 
 @node Case Changes