2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
+ * data.c (Fcdr, Fcar): Revert the last change, since it didn't
+ really clarify much.
+
* search.c (Fre_search_backward): Mention `case-fold-search' in
all the re_search_* functions (bug#8138).
* keyboard.c (Fopen_dribble_file): Document when the file is
closed (bug#8056).
-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
/* Extract and set components of lists */
DEFUN ("car", Fcar, Scar, 1, 1, 0,
- doc: /* Return the car (first element) of LIST. If arg is nil, return nil.
+ doc: /* Return the car 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
}
DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0,
- doc: /* Return the cdr (rest) of LIST. If arg is nil, return nil.
+ doc: /* Return the cdr 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