diff options
| author | Richard M. Stallman | 1994-01-22 16:14:37 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-01-22 16:14:37 +0000 |
| commit | 3797b4c3fcbc84403c0110bc063effaab53b23eb (patch) | |
| tree | 482421b58a8d8c69076607ed34204eb6cd72c93c /src | |
| parent | 73d4035593591f1ddce7d2f11c03924c6cd332f2 (diff) | |
| download | emacs-3797b4c3fcbc84403c0110bc063effaab53b23eb.tar.gz emacs-3797b4c3fcbc84403c0110bc063effaab53b23eb.zip | |
(Fassq, Fassoc): Doc fixes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 8 |
1 files changed, 4 insertions, 4 deletions
| @@ -504,8 +504,8 @@ The value is actually the tail of LIST whose car is ELT.") | |||
| 504 | } | 504 | } |
| 505 | 505 | ||
| 506 | DEFUN ("assq", Fassq, Sassq, 2, 2, 0, | 506 | DEFUN ("assq", Fassq, Sassq, 2, 2, 0, |
| 507 | "Return non-nil if ELT is `eq' to the car of an element of LIST.\n\ | 507 | "Return non-nil if KEY is `eq' to the car of an element of LIST.\n\ |
| 508 | The value is actually the element of LIST whose car is ELT.\n\ | 508 | The value is actually the element of LIST whose car is KEY.\n\ |
| 509 | Elements of LIST that are not conses are ignored.") | 509 | Elements of LIST that are not conses are ignored.") |
| 510 | (key, list) | 510 | (key, list) |
| 511 | register Lisp_Object key; | 511 | register Lisp_Object key; |
| @@ -545,8 +545,8 @@ assq_no_quit (key, list) | |||
| 545 | } | 545 | } |
| 546 | 546 | ||
| 547 | DEFUN ("assoc", Fassoc, Sassoc, 2, 2, 0, | 547 | DEFUN ("assoc", Fassoc, Sassoc, 2, 2, 0, |
| 548 | "Return non-nil if ELT is `equal' to the car of an element of LIST.\n\ | 548 | "Return non-nil if KEY is `equal' to the car of an element of LIST.\n\ |
| 549 | The value is actually the element of LIST whose car is ELT.") | 549 | The value is actually the element of LIST whose car is KEY.") |
| 550 | (key, list) | 550 | (key, list) |
| 551 | register Lisp_Object key; | 551 | register Lisp_Object key; |
| 552 | Lisp_Object list; | 552 | Lisp_Object list; |