From: Eli Zaretskii Date: Wed, 25 Jan 2017 20:49:35 +0000 (+0200) Subject: ; * doc/lispref/lists.texi (List Elements): Fix last change. X-Git-Tag: emacs-26.0.90~870^2~52 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cd0e63652445c90af7167b48d83e410af1e6e590;p=emacs.git ; * doc/lispref/lists.texi (List Elements): Fix last change. --- diff --git a/doc/lispref/lists.texi b/doc/lispref/lists.texi index 87fc3afe2e1..8eab2818f97 100644 --- a/doc/lispref/lists.texi +++ b/doc/lispref/lists.texi @@ -387,13 +387,13 @@ or @code{(nthcdr 2 @var{cons-cell})}. @findex cdddar @findex cddddr In addition to the above, 24 additional compositions of @code{car} and -@code{cdr} are defined as @code{cXXXr} and @code{cXXXXr}, where each -@var{x} is either @samp{a} or @samp{d}. -@code{cadr}, @code{caddr}, and @code{cadddr} pick out the second, -third or fourth elements of a list, respectively. @file{cl-lib} -provides the same under the names @code{cl-second}, @code{cl-third}, -and @code{cl-fourth}. -@xref{List Functions,,, cl, Common Lisp Extensions}. +@code{cdr} are defined as @code{c@var{xxx}r} and @code{c@var{xxxx}r}, +where each @code{@var{x}} is either @code{a} or @code{d}. @code{cadr}, +@code{caddr}, and @code{cadddr} pick out the second, third or fourth +elements of a list, respectively. @file{cl-lib} provides the same +under the names @code{cl-second}, @code{cl-third}, and +@code{cl-fourth}. @xref{List Functions,,, cl, Common Lisp +Extensions}. @defun butlast x &optional n This function returns the list @var{x} with the last element,