diff options
Diffstat (limited to 'src/fns.c')
| -rw-r--r-- | src/fns.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -1390,7 +1390,7 @@ The value is actually the tail of LIST whose car is ELT. */) | |||
| 1390 | 1390 | ||
| 1391 | DEFUN ("memq", Fmemq, Smemq, 2, 2, 0, | 1391 | DEFUN ("memq", Fmemq, Smemq, 2, 2, 0, |
| 1392 | doc: /* Return non-nil if ELT is an element of LIST. | 1392 | doc: /* Return non-nil if ELT is an element of LIST. |
| 1393 | Comparison done with EQ. The value is actually the tail of LIST | 1393 | Comparison done with `eq'. The value is actually the tail of LIST |
| 1394 | whose car is ELT. */) | 1394 | whose car is ELT. */) |
| 1395 | (elt, list) | 1395 | (elt, list) |
| 1396 | Lisp_Object elt, list; | 1396 | Lisp_Object elt, list; |
| @@ -4845,7 +4845,7 @@ DEFUN ("remhash", Fremhash, Sremhash, 2, 2, 0, | |||
| 4845 | 4845 | ||
| 4846 | DEFUN ("maphash", Fmaphash, Smaphash, 2, 2, 0, | 4846 | DEFUN ("maphash", Fmaphash, Smaphash, 2, 2, 0, |
| 4847 | doc: /* Call FUNCTION for all entries in hash table TABLE. | 4847 | doc: /* Call FUNCTION for all entries in hash table TABLE. |
| 4848 | FUNCTION is called with 2 arguments KEY and VALUE. */) | 4848 | FUNCTION is called with two arguments, KEY and VALUE. */) |
| 4849 | (function, table) | 4849 | (function, table) |
| 4850 | Lisp_Object function, table; | 4850 | Lisp_Object function, table; |
| 4851 | { | 4851 | { |