emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r105212: * data.c (car, cdr): add fun


From: Lars Magne Ingebrigtsen
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r105212: * data.c (car, cdr): add functionality hints to documentation.
Date: Thu, 14 Jul 2011 20:29:19 +0200
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 105212
author: Adam Sjøgren <address@hidden>
committer: Lars Magne Ingebrigtsen <address@hidden>
branch nick: trunk
timestamp: Thu 2011-07-14 20:29:19 +0200
message:
  * data.c (car, cdr): add functionality hints to documentation.
modified:
  src/ChangeLog
  src/data.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2011-07-14 17:43:50 +0000
+++ b/src/ChangeLog     2011-07-14 18:29:19 +0000
@@ -1,3 +1,7 @@
+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-10 08:20:10 +0000
+++ b/src/data.c        2011-07-14 18:29:19 +0000
@@ -463,7 +463,7 @@
 /* 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 ("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


reply via email to

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