emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/emacs-lisp/assoc.el,v


From: Juanma Barranquero
Subject: [Emacs-diffs] Changes to emacs/lisp/emacs-lisp/assoc.el,v
Date: Sat, 01 Nov 2008 01:24:41 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Juanma Barranquero <lektu>      08/11/01 01:24:38

Index: emacs-lisp/assoc.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/emacs-lisp/assoc.el,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -b -r1.14 -r1.15
--- emacs-lisp/assoc.el 6 May 2008 03:21:08 -0000       1.14
+++ emacs-lisp/assoc.el 1 Nov 2008 01:24:38 -0000       1.15
@@ -40,7 +40,7 @@
 
 
 (defun aelement (key value)
-  "Makes a list of a cons cell containing car of KEY and cdr of VALUE.
+  "Make a list of a cons cell containing car of KEY and cdr of VALUE.
 The returned list is suitable as an element of an alist."
   (list (cons key value)))
 
@@ -93,7 +93,7 @@
 
 
 (defun aget (alist key &optional keynil-p)
-  "Returns the value in ALIST that is associated with KEY.
+  "Return the value in ALIST that is associated with KEY.
 Optional KEYNIL-P describes what to do if the value associated with
 KEY is nil.  If KEYNIL-P is not supplied or is nil, and the value is
 nil, then KEY is returned.  If KEYNIL-P is non-nil, then nil would be




reply via email to

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