comparison lispref/text.texi @ 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 695cf19ef79e
children fe75563f4d13
comparison
equal deleted inserted replaced
52543:ead8baf4d882 52544:5e831368522d
2230 This command moves point to the first non-whitespace character in the 2230 This command moves point to the first non-whitespace character in the
2231 current line (which is the line in which point is located). It returns 2231 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 @end deffn 2239 If @var{arg} is omitted or @code{nil}, it defaults to 1.
2240 2240 @end deffn
2241 @deffn Command forward-to-indentation arg 2241
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
2248 @comment node-name, next, previous, up 2250 @comment node-name, next, previous, up
2249 @section Case Changes 2251 @section Case Changes