From: Lars Magne Ingebrigtsen Date: Thu, 14 Jul 2011 20:08:05 +0000 (+0200) Subject: * data.c (Fcdr, Fcar): Revert the last change, since it didn't really clarify much. X-Git-Url: https://git.hcoop.net/bpt/emacs.git/commitdiff_plain/2fd0959ded01063e4a62c05e9d2d6b05cf6384c8 * data.c (Fcdr, Fcar): Revert the last change, since it didn't really clarify much. --- diff --git a/src/ChangeLog b/src/ChangeLog index 3ea1320950..50a2d82fc7 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,15 +1,14 @@ 2011-07-14 Lars Magne Ingebrigtsen + * 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 - - * data.c (car, cdr): add functionality hints to documentation. - 2011-07-14 Eli Zaretskii * bidi.c (bidi_dump_cached_states): Fix format of displaying diff --git a/src/data.c b/src/data.c index b269fc3d3c..7bc04592c5 100644 --- a/src/data.c +++ b/src/data.c @@ -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 (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 @@ -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 (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