diff options
| author | Richard M. Stallman | 2004-03-04 17:08:16 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2004-03-04 17:08:16 +0000 |
| commit | a2fdaa28bab237e34682a56e3c58571088eb662b (patch) | |
| tree | 36f5c435add5b1b89a711df1a3992fe8a81fe8fb | |
| parent | 1c6736585d3e1d67009023a4971d8c91fb4e9fe5 (diff) | |
| download | emacs-a2fdaa28bab237e34682a56e3c58571088eb662b.tar.gz emacs-a2fdaa28bab237e34682a56e3c58571088eb662b.zip | |
(Building Lists): Minor clarification.
| -rw-r--r-- | lispref/lists.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lispref/lists.texi b/lispref/lists.texi index e3891f81971..41b3918de06 100644 --- a/lispref/lists.texi +++ b/lispref/lists.texi | |||
| @@ -448,11 +448,11 @@ interesting to note that @code{list} is used more times in the source | |||
| 448 | code for Emacs than @code{cons}. | 448 | code for Emacs than @code{cons}. |
| 449 | 449 | ||
| 450 | @defun cons object1 object2 | 450 | @defun cons object1 object2 |
| 451 | This function is the fundamental function for building new list | 451 | This function is the most basic function for building new list |
| 452 | structure. It creates a new cons cell, making @var{object1} the | 452 | structure. It creates a new cons cell, making @var{object1} the |
| 453 | @sc{car}, and @var{object2} the @sc{cdr}. It then returns the new cons | 453 | @sc{car}, and @var{object2} the @sc{cdr}. It then returns the new |
| 454 | cell. The arguments @var{object1} and @var{object2} may be any Lisp | 454 | cons cell. The arguments @var{object1} and @var{object2} may be any |
| 455 | objects, but most often @var{object2} is a list. | 455 | Lisp objects, but most often @var{object2} is a list. |
| 456 | 456 | ||
| 457 | @example | 457 | @example |
| 458 | @group | 458 | @group |