1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00

; * doc/lispintro/emacs-lisp-intro.texi (car & cdr): Fix typo.

(cherry picked from commit 0ebedd0119)
This commit is contained in:
Eli Zaretskii 2023-06-25 08:25:13 +03:00
parent 987b25d60d
commit 1d9200d9bb

View file

@ -6827,7 +6827,7 @@ their code.
However, lists in Lisp are built using a lower-level structure known However, lists in Lisp are built using a lower-level structure known
as ``cons cells'' (@pxref{List Implementation}), in which there is no as ``cons cells'' (@pxref{List Implementation}), in which there is no
such thing as ``first'' or ``rest,''and the @sc{car} and the @sc{cdr} such thing as ``first'' or ``rest'', and the @sc{car} and the @sc{cdr}
are symmetrical. Lisp does not try to hide the existence of cons are symmetrical. Lisp does not try to hide the existence of cons
cells, and programs do use them for things other than lists. For this cells, and programs do use them for things other than lists. For this
reason, the names are helpful for reminding programmers that reason, the names are helpful for reminding programmers that