diff options
Diffstat (limited to 'src/fns.c')
| -rw-r--r-- | src/fns.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -1471,7 +1471,7 @@ The value is actually the tail of LIST whose car is ELT. */) | |||
| 1471 | 1471 | ||
| 1472 | DEFUN ("memq", Fmemq, Smemq, 2, 2, 0, | 1472 | DEFUN ("memq", Fmemq, Smemq, 2, 2, 0, |
| 1473 | doc: /* Return non-nil if ELT is an element of LIST. | 1473 | doc: /* Return non-nil if ELT is an element of LIST. |
| 1474 | Comparison done with EQ. The value is actually the tail of LIST | 1474 | Comparison done with `eq'. The value is actually the tail of LIST |
| 1475 | whose car is ELT. */) | 1475 | whose car is ELT. */) |
| 1476 | (elt, list) | 1476 | (elt, list) |
| 1477 | Lisp_Object elt, list; | 1477 | Lisp_Object elt, list; |
| @@ -5486,7 +5486,7 @@ DEFUN ("remhash", Fremhash, Sremhash, 2, 2, 0, | |||
| 5486 | 5486 | ||
| 5487 | DEFUN ("maphash", Fmaphash, Smaphash, 2, 2, 0, | 5487 | DEFUN ("maphash", Fmaphash, Smaphash, 2, 2, 0, |
| 5488 | doc: /* Call FUNCTION for all entries in hash table TABLE. | 5488 | doc: /* Call FUNCTION for all entries in hash table TABLE. |
| 5489 | FUNCTION is called with 2 arguments KEY and VALUE. */) | 5489 | FUNCTION is called with two arguments, KEY and VALUE. */) |
| 5490 | (function, table) | 5490 | (function, table) |
| 5491 | Lisp_Object function, table; | 5491 | Lisp_Object function, table; |
| 5492 | { | 5492 | { |