summaryrefslogtreecommitdiff
path: root/doc/lispref
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2023-09-08 14:39:49 +0300
committerEli Zaretskii <eliz@gnu.org>2023-09-08 14:39:49 +0300
commit4e7112ab211c0520e9d81388f7d5f84aace0a9f9 (patch)
tree30c5e2fc8c45845edfa3c5ac4f2f9327efb68162 /doc/lispref
parent34bbb6c8d2198b73327df3680cfd596631601505 (diff)
downloademacs-4e7112ab211c0520e9d81388f7d5f84aace0a9f9.tar.gz
emacs-4e7112ab211c0520e9d81388f7d5f84aace0a9f9.tar.bz2
emacs-4e7112ab211c0520e9d81388f7d5f84aace0a9f9.zip
; Fix inaccuracy in ELisp reference manual
* doc/lispref/text.texi (Motion by Indent): Remove incorrect information about return values that can be anything. (Bug#65819)
Diffstat (limited to 'doc/lispref')
-rw-r--r--doc/lispref/text.texi11
1 files changed, 5 insertions, 6 deletions
diff --git a/doc/lispref/text.texi b/doc/lispref/text.texi
index 0b0328d0252..4f11caaf64e 100644
--- a/doc/lispref/text.texi
+++ b/doc/lispref/text.texi
@@ -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