diff options
| author | Richard M. Stallman | 2003-09-19 14:43:24 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-09-19 14:43:24 +0000 |
| commit | 2b42d12a37c0a7b520f68ccb7724322f4708acd2 (patch) | |
| tree | 54848f728f75395190eade5de7d857a475760c26 | |
| parent | 1994c2a79c0391dde6f3463202be7d145c4071eb (diff) | |
| download | emacs-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.texi | 6 |
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 |
| 2237 | This command moves point backward @var{arg} lines and then to the | 2237 | This command moves point backward @var{arg} lines and then to the |
| 2238 | first nonblank character on that line. It returns @code{nil}. | 2238 | first nonblank character on that line. It returns @code{nil}. |
| 2239 | If @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 |
| 2243 | This command moves point forward @var{arg} lines and then to the first | 2244 | This command moves point forward @var{arg} lines and then to the first |
| 2244 | nonblank character on that line. It returns @code{nil}. | 2245 | nonblank character on that line. It returns @code{nil}. |
| 2246 | If @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 |