emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r105216: * data.c (Fcdr, Fcar): Rever


From: Lars Magne Ingebrigtsen
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r105216: * data.c (Fcdr, Fcar): Revert the last change, since it didn't really clarify much.
Date: Thu, 14 Jul 2011 22:08:05 +0200
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 105216
committer: Lars Magne Ingebrigtsen <address@hidden>
branch nick: trunk
timestamp: Thu 2011-07-14 22:08:05 +0200
message:
  * data.c (Fcdr, Fcar): Revert the last change, since it didn't really clarify 
much.
modified:
  src/ChangeLog
  src/data.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2011-07-14 18:45:36 +0000
+++ b/src/ChangeLog     2011-07-14 20:08:05 +0000
@@ -1,15 +1,14 @@
 2011-07-14  Lars Magne Ingebrigtsen  <address@hidden>
 
+       * 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  <address@hidden>
-
-       * data.c (car, cdr): add functionality hints to documentation.
-
 2011-07-14  Eli Zaretskii  <address@hidden>
 
        * bidi.c (bidi_dump_cached_states): Fix format of displaying

=== modified file 'src/data.c'
--- a/src/data.c        2011-07-14 18:29:19 +0000
+++ b/src/data.c        2011-07-14 20:08:05 +0000
@@ -463,7 +463,7 @@
 /* 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 ("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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]