1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-28 07:50:48 -08:00

* data.c (car, cdr): add functionality hints to documentation.

This commit is contained in:
Adam Sjøgren 2011-07-14 20:29:19 +02:00 committed by Lars Magne Ingebrigtsen
parent 2f5c602485
commit 00bef2baa1
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2011-07-14 Adam Sjøgren <asjo@koldfront.dk>
* data.c (car, cdr): add functionality hints to documentation.
2011-07-14 Eli Zaretskii <eliz@gnu.org>
* bidi.c (bidi_dump_cached_states): Fix format of displaying

View file

@ -463,7 +463,7 @@ DEFUN ("floatp", Ffloatp, Sfloatp, 1, 1, 0,
/* Extract and set components of lists */
DEFUN ("car", Fcar, Scar, 1, 1, 0,
doc: /* Return the car of LIST. If arg is nil, return nil.
doc: /* Return the car (first element) of LIST. If arg is nil, return nil.
Error if arg is not nil and not a cons cell. See also `car-safe'.
See Info node `(elisp)Cons Cells' for a discussion of related basic
@ -481,7 +481,7 @@ DEFUN ("car-safe", Fcar_safe, Scar_safe, 1, 1, 0,
}
DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0,
doc: /* Return the cdr of LIST. If arg is nil, return nil.
doc: /* Return the cdr (rest) of LIST. If arg is nil, return nil.
Error if arg is not nil and not a cons cell. See also `cdr-safe'.
See Info node `(elisp)Cons Cells' for a discussion of related basic