aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLuc Teirlinck2003-11-22 03:48:24 +0000
committerLuc Teirlinck2003-11-22 03:48:24 +0000
commitaa1b3f2e185525bb856bd826f8a0221244136a28 (patch)
tree2bebc59386c0702e33c5448263eaf45bce12bdbb /src
parentded4064fe907fb609506480b90700541485b14b0 (diff)
downloademacs-aa1b3f2e185525bb856bd826f8a0221244136a28.tar.gz
emacs-aa1b3f2e185525bb856bd826f8a0221244136a28.zip
(Fassq, Fassoc, Frassq, Frassoc): Doc fixes.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fns.c b/src/fns.c
index 3bded8f68cd..c000d38724c 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -1494,7 +1494,7 @@ whose car is ELT. */)
1494 1494
1495DEFUN ("assq", Fassq, Sassq, 2, 2, 0, 1495DEFUN ("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.
1497The value is actually the element of LIST whose car is KEY. 1497The value is actually the first element of LIST whose car is KEY.
1498Elements of LIST that are not conses are ignored. */) 1498Elements 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
1552DEFUN ("assoc", Fassoc, Sassoc, 2, 2, 0, 1552DEFUN ("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.
1554The value is actually the element of LIST whose car equals KEY. */) 1554The 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
1596DEFUN ("rassq", Frassq, Srassq, 2, 2, 0, 1596DEFUN ("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.
1598The value is actually the element of LIST whose cdr is KEY. */) 1598The 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
1638DEFUN ("rassoc", Frassoc, Srassoc, 2, 2, 0, 1638DEFUN ("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.
1640The value is actually the element of LIST whose cdr equals KEY. */) 1640The 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{