diff options
| author | Glenn Morris | 2012-05-04 00:38:33 -0700 |
|---|---|---|
| committer | Glenn Morris | 2012-05-04 00:38:33 -0700 |
| commit | 8d8d67aee8c9a21269ff2d5185daead8ce495072 (patch) | |
| tree | a7088a3cff4cb3ea215619f68cb23ab5ad7ad4c2 /doc | |
| parent | cd8d025346952ffdf316b93e04267946a494e353 (diff) | |
| download | emacs-8d8d67aee8c9a21269ff2d5185daead8ce495072.tar.gz emacs-8d8d67aee8c9a21269ff2d5185daead8ce495072.zip | |
Small edits for doc/lispref/lists.texi
* lists.texi (List-related Predicates, List Variables): Tweak page-breaks.
(Sets And Lists): Convert inforef to xref.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/lists.texi | 7 |
2 files changed, 7 insertions, 4 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 9aeefb42157..2cb961cab55 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2012-05-04 Glenn Morris <rgm@gnu.org> | 1 | 2012-05-04 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * lists.texi (List-related Predicates, List Variables): | ||
| 4 | Tweak page-breaks. | ||
| 5 | (Sets And Lists): Convert inforef to xref. | ||
| 6 | |||
| 3 | * text.texi (Auto Filling): Don't mention Emacs 19. | 7 | * text.texi (Auto Filling): Don't mention Emacs 19. |
| 4 | 8 | ||
| 5 | * commands.texi (Event Input Misc): Don't mention unread-command-char. | 9 | * commands.texi (Event Input Misc): Don't mention unread-command-char. |
diff --git a/doc/lispref/lists.texi b/doc/lispref/lists.texi index 68ec888b7e1..a894d93a4a0 100644 --- a/doc/lispref/lists.texi +++ b/doc/lispref/lists.texi | |||
| @@ -88,7 +88,7 @@ structure made out of cons cells as a @dfn{list structure}. | |||
| 88 | whether it is a cons cell or is a list, or whether it is the | 88 | whether it is a cons cell or is a list, or whether it is the |
| 89 | distinguished object @code{nil}. (Many of these predicates can be | 89 | distinguished object @code{nil}. (Many of these predicates can be |
| 90 | defined in terms of the others, but they are used so often that it is | 90 | defined in terms of the others, but they are used so often that it is |
| 91 | worth having all of them.) | 91 | worth having them.) |
| 92 | 92 | ||
| 93 | @defun consp object | 93 | @defun consp object |
| 94 | This function returns @code{t} if @var{object} is a cons cell, @code{nil} | 94 | This function returns @code{t} if @var{object} is a cons cell, @code{nil} |
| @@ -764,8 +764,7 @@ if it already has one; otherwise, it is equivalent to @code{nil}. | |||
| 764 | 764 | ||
| 765 | The argument @var{symbol} is not implicitly quoted; | 765 | The argument @var{symbol} is not implicitly quoted; |
| 766 | @code{add-to-ordered-list} is an ordinary function, like @code{set} | 766 | @code{add-to-ordered-list} is an ordinary function, like @code{set} |
| 767 | and unlike @code{setq}. Quote the argument yourself if that is what | 767 | and unlike @code{setq}. Quote the argument yourself if necessary. |
| 768 | you want. | ||
| 769 | 768 | ||
| 770 | The ordering information is stored in a hash table on @var{symbol}'s | 769 | The ordering information is stored in a hash table on @var{symbol}'s |
| 771 | @code{list-order} property. | 770 | @code{list-order} property. |
| @@ -1270,7 +1269,7 @@ functions for sets include @code{memq} and @code{delq}, and their | |||
| 1270 | @b{Common Lisp note:} Common Lisp has functions @code{union} (which | 1269 | @b{Common Lisp note:} Common Lisp has functions @code{union} (which |
| 1271 | avoids duplicate elements) and @code{intersection} for set operations. | 1270 | avoids duplicate elements) and @code{intersection} for set operations. |
| 1272 | Although standard GNU Emacs Lisp does not have them, the @file{cl} | 1271 | Although standard GNU Emacs Lisp does not have them, the @file{cl} |
| 1273 | library provides versions. @inforef{Top, Overview, cl}. | 1272 | library provides versions. @xref{Top,, Overview, cl, Common Lisp Extensions}. |
| 1274 | @end quotation | 1273 | @end quotation |
| 1275 | 1274 | ||
| 1276 | @defun memq object list | 1275 | @defun memq object list |