summaryrefslogtreecommitdiff
path: root/lispref/lists.texi
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2003-06-30 10:43:01 +0000
committerRichard M. Stallman <rms@gnu.org>2003-06-30 10:43:01 +0000
commit6fe508678c84a0291bd95e0f726c14335a5dccff (patch)
tree3e7d18bda01cd49d0a55d1f4fee7438c151be60c /lispref/lists.texi
parent74eee906cca8f02e46d7399c35b1051344d7d2d5 (diff)
Minor Texinfo usage fix.
Diffstat (limited to 'lispref/lists.texi')
-rw-r--r--lispref/lists.texi10
1 files changed, 5 insertions, 5 deletions
diff --git a/lispref/lists.texi b/lispref/lists.texi
index 3235daa1d5..e30c7013a5 100644
--- a/lispref/lists.texi
+++ b/lispref/lists.texi
@@ -384,11 +384,11 @@ If @var{n} is zero or negative, @code{nthcdr} returns all of
@end defun
@defun last list &optional n
-This function returns the last link of @var{list}. The
-@code{car} of this link is the list's last element. If @var{list} is
-null, @code{nil} is returned. If @var{n} is non-nil the
-@var{n}-th-to-last link is returned instead, or the whole @var{list} if
-@var{n} is bigger than @var{list}'s length.
+This function returns the last link of @var{list}. The @code{car} of
+this link is the list's last element. If @var{list} is null,
+@code{nil} is returned. If @var{n} is non-@code{nil}, the
+@var{n}th-to-last link is returned instead, or the whole of @var{list}
+if @var{n} is bigger than @var{list}'s length.
@end defun
@defun safe-length list