]> git.eshelyaron.com Git - emacs.git/commitdiff
(Building Lists): Minor clarification.
authorRichard M. Stallman <rms@gnu.org>
Thu, 4 Mar 2004 17:08:16 +0000 (17:08 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 4 Mar 2004 17:08:16 +0000 (17:08 +0000)
lispref/lists.texi

index e3891f819717afaedef92a8ee9654801e71a812c..41b3918de065b0d5c243710113c8aa6f131b15c8 100644 (file)
@@ -448,11 +448,11 @@ interesting to note that @code{list} is used more times in the source
 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