diff options
| author | Luc Teirlinck | 2003-11-22 03:48:24 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2003-11-22 03:48:24 +0000 |
| commit | aa1b3f2e185525bb856bd826f8a0221244136a28 (patch) | |
| tree | 2bebc59386c0702e33c5448263eaf45bce12bdbb /src | |
| parent | ded4064fe907fb609506480b90700541485b14b0 (diff) | |
| download | emacs-aa1b3f2e185525bb856bd826f8a0221244136a28.tar.gz emacs-aa1b3f2e185525bb856bd826f8a0221244136a28.zip | |
(Fassq, Fassoc, Frassq, Frassoc): Doc fixes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 8 |
1 files changed, 4 insertions, 4 deletions
| @@ -1494,7 +1494,7 @@ whose car is ELT. */) | |||
| 1494 | 1494 | ||
| 1495 | DEFUN ("assq", Fassq, Sassq, 2, 2, 0, | 1495 | DEFUN ("assq", Fassq, Sassq, 2, 2, 0, |
| 1496 | doc: /* Return non-nil if KEY is `eq' to the car of an element of LIST. | 1496 | doc: /* Return non-nil if KEY is `eq' to the car of an element of LIST. |
| 1497 | The value is actually the element of LIST whose car is KEY. | 1497 | The value is actually the first element of LIST whose car is KEY. |
| 1498 | Elements of LIST that are not conses are ignored. */) | 1498 | Elements of LIST that are not conses are ignored. */) |
| 1499 | (key, list) | 1499 | (key, list) |
| 1500 | Lisp_Object key, list; | 1500 | Lisp_Object key, list; |
| @@ -1551,7 +1551,7 @@ assq_no_quit (key, list) | |||
| 1551 | 1551 | ||
| 1552 | DEFUN ("assoc", Fassoc, Sassoc, 2, 2, 0, | 1552 | DEFUN ("assoc", Fassoc, Sassoc, 2, 2, 0, |
| 1553 | doc: /* Return non-nil if KEY is `equal' to the car of an element of LIST. | 1553 | doc: /* Return non-nil if KEY is `equal' to the car of an element of LIST. |
| 1554 | The value is actually the element of LIST whose car equals KEY. */) | 1554 | The value is actually the first element of LIST whose car equals KEY. */) |
| 1555 | (key, list) | 1555 | (key, list) |
| 1556 | Lisp_Object key, list; | 1556 | Lisp_Object key, list; |
| 1557 | { | 1557 | { |
| @@ -1595,7 +1595,7 @@ The value is actually the element of LIST whose car equals KEY. */) | |||
| 1595 | 1595 | ||
| 1596 | DEFUN ("rassq", Frassq, Srassq, 2, 2, 0, | 1596 | DEFUN ("rassq", Frassq, Srassq, 2, 2, 0, |
| 1597 | doc: /* Return non-nil if KEY is `eq' to the cdr of an element of LIST. | 1597 | doc: /* Return non-nil if KEY is `eq' to the cdr of an element of LIST. |
| 1598 | The value is actually the element of LIST whose cdr is KEY. */) | 1598 | The value is actually the first element of LIST whose cdr is KEY. */) |
| 1599 | (key, list) | 1599 | (key, list) |
| 1600 | register Lisp_Object key; | 1600 | register Lisp_Object key; |
| 1601 | Lisp_Object list; | 1601 | Lisp_Object list; |
| @@ -1637,7 +1637,7 @@ The value is actually the element of LIST whose cdr is KEY. */) | |||
| 1637 | 1637 | ||
| 1638 | DEFUN ("rassoc", Frassoc, Srassoc, 2, 2, 0, | 1638 | DEFUN ("rassoc", Frassoc, Srassoc, 2, 2, 0, |
| 1639 | doc: /* Return non-nil if KEY is `equal' to the cdr of an element of LIST. | 1639 | doc: /* Return non-nil if KEY is `equal' to the cdr of an element of LIST. |
| 1640 | The value is actually the element of LIST whose cdr equals KEY. */) | 1640 | The value is actually the first element of LIST whose cdr equals KEY. */) |
| 1641 | (key, list) | 1641 | (key, list) |
| 1642 | Lisp_Object key, list; | 1642 | Lisp_Object key, list; |
| 1643 | { | 1643 | { |