changeset 54264:9fd3a94524eb

(Building Lists): Minor clarification.
author Richard M. Stallman <rms@gnu.org>
date Thu, 04 Mar 2004 17:08:16 +0000
parents 41fd82e27495
children 1f7cd275e61f
files lispref/lists.texi
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lispref/lists.texi	Thu Mar 04 17:06:50 2004 +0000
+++ b/lispref/lists.texi	Thu Mar 04 17:08:16 2004 +0000
@@ -448,11 +448,11 @@
 code for Emacs than @code{cons}.
 
 @defun cons object1 object2
-This function is the fundamental function for building new list
+This function is the most basic function for building new list
 structure.  It creates a new cons cell, making @var{object1} the
-@sc{car}, and @var{object2} the @sc{cdr}.  It then returns the new cons
-cell.  The arguments @var{object1} and @var{object2} may be any Lisp
-objects, but most often @var{object2} is a list.
+@sc{car}, and @var{object2} the @sc{cdr}.  It then returns the new
+cons cell.  The arguments @var{object1} and @var{object2} may be any
+Lisp objects, but most often @var{object2} is a list.
 
 @example
 @group