]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix inaccuracy in ELisp reference manual
authorEli Zaretskii <eliz@gnu.org>
Fri, 8 Sep 2023 11:39:49 +0000 (14:39 +0300)
committerEli Zaretskii <eliz@gnu.org>
Fri, 8 Sep 2023 11:39:49 +0000 (14:39 +0300)
* doc/lispref/text.texi (Motion by Indent): Remove incorrect
information about return values that can be anything.  (Bug#65819)

doc/lispref/text.texi

index 0b0328d0252f6bade8399bf36a3ff68d9b388e0e..4f11caaf64e41d3e306586284c33d6c817e2e141 100644 (file)
@@ -2808,22 +2808,21 @@ indentation in the text.
 @deffn Command back-to-indentation
 @comment !!SourceFile simple.el
 This command moves point to the first non-whitespace character in the
-current line (which is the line in which point is located).  It returns
-@code{nil}.
+current line (which is the line in which point is located).
 @end deffn
 
 @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.
+first nonblank character on that line.  If @var{arg} is omitted or
+@code{nil}, it defaults to 1.
 @end deffn
 
 @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.
+nonblank character on that line.  If @var{arg} is omitted or
+@code{nil}, it defaults to 1.
 @end deffn
 
 @node Case Changes