Mercurial > emacs
changeset 52544:5e831368522d
(Motion by Indent): Arg to backward-to-indentation and
forward-to-indentation is optional.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 19 Sep 2003 14:43:24 +0000 |
parents | ead8baf4d882 |
children | abc39a63c916 |
files | lispref/text.texi |
diffstat | 1 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lispref/text.texi Fri Sep 19 14:42:42 2003 +0000 +++ b/lispref/text.texi Fri Sep 19 14:43:24 2003 +0000 @@ -2232,16 +2232,18 @@ @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