diff options
| author | Richard M. Stallman | 2004-02-17 00:54:04 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2004-02-17 00:54:04 +0000 |
| commit | 6ee45eab34543bf6620de6cc55c1234d92292a3e (patch) | |
| tree | 3b7a5a429b2e8ba578a18ef28981d42967899545 | |
| parent | 6d682d424ed621561722d1a5244d8bb707463a50 (diff) | |
| download | emacs-6ee45eab34543bf6620de6cc55c1234d92292a3e.tar.gz emacs-6ee45eab34543bf6620de6cc55c1234d92292a3e.zip | |
(Building Lists): Minor cleanup.
| -rw-r--r-- | lispref/lists.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lispref/lists.texi b/lispref/lists.texi index cb033118984..2426a4d4670 100644 --- a/lispref/lists.texi +++ b/lispref/lists.texi | |||
| @@ -448,7 +448,7 @@ 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 used to build new list | 451 | This function is the fundamental 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 cons |
| 454 | cell. The arguments @var{object1} and @var{object2} may be any Lisp | 454 | cell. The arguments @var{object1} and @var{object2} may be any Lisp |