aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen2011-07-14 22:08:05 +0200
committerLars Magne Ingebrigtsen2011-07-14 22:08:05 +0200
commit2fd0959ded01063e4a62c05e9d2d6b05cf6384c8 (patch)
tree9f5b3e24346b2b6ef2a5ebf77495cf042ff5046f /src
parent49080b10623d000c69a700a26316eb951495f2d8 (diff)
downloademacs-2fd0959ded01063e4a62c05e9d2d6b05cf6384c8.tar.gz
emacs-2fd0959ded01063e4a62c05e9d2d6b05cf6384c8.zip
* data.c (Fcdr, Fcar): Revert the last change, since it didn't really clarify much.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog7
-rw-r--r--src/data.c4
2 files changed, 5 insertions, 6 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 3ea1320950d..50a2d82fc7e 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,15 +1,14 @@
12011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org> 12011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
2 2
3 * data.c (Fcdr, Fcar): Revert the last change, since it didn't
4 really clarify much.
5
3 * search.c (Fre_search_backward): Mention `case-fold-search' in 6 * search.c (Fre_search_backward): Mention `case-fold-search' in
4 all the re_search_* functions (bug#8138). 7 all the re_search_* functions (bug#8138).
5 8
6 * keyboard.c (Fopen_dribble_file): Document when the file is 9 * keyboard.c (Fopen_dribble_file): Document when the file is
7 closed (bug#8056). 10 closed (bug#8056).
8 11
92011-07-14 Adam Sjøgren <asjo@koldfront.dk>
10
11 * data.c (car, cdr): add functionality hints to documentation.
12
132011-07-14 Eli Zaretskii <eliz@gnu.org> 122011-07-14 Eli Zaretskii <eliz@gnu.org>
14 13
15 * bidi.c (bidi_dump_cached_states): Fix format of displaying 14 * bidi.c (bidi_dump_cached_states): Fix format of displaying
diff --git a/src/data.c b/src/data.c
index b269fc3d3c3..7bc04592c57 100644
--- a/src/data.c
+++ b/src/data.c
@@ -463,7 +463,7 @@ DEFUN ("floatp", Ffloatp, Sfloatp, 1, 1, 0,
463/* Extract and set components of lists */ 463/* Extract and set components of lists */
464 464
465DEFUN ("car", Fcar, Scar, 1, 1, 0, 465DEFUN ("car", Fcar, Scar, 1, 1, 0,
466 doc: /* Return the car (first element) of LIST. If arg is nil, return nil. 466 doc: /* Return the car of LIST. If arg is nil, return nil.
467Error if arg is not nil and not a cons cell. See also `car-safe'. 467Error if arg is not nil and not a cons cell. See also `car-safe'.
468 468
469See Info node `(elisp)Cons Cells' for a discussion of related basic 469See 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,
481} 481}
482 482
483DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0, 483DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0,
484 doc: /* Return the cdr (rest) of LIST. If arg is nil, return nil. 484 doc: /* Return the cdr of LIST. If arg is nil, return nil.
485Error if arg is not nil and not a cons cell. See also `cdr-safe'. 485Error if arg is not nil and not a cons cell. See also `cdr-safe'.
486 486
487See Info node `(elisp)Cons Cells' for a discussion of related basic 487See Info node `(elisp)Cons Cells' for a discussion of related basic