aboutsummaryrefslogtreecommitdiffstats
path: root/src/fns.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fns.c')
-rw-r--r--src/fns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fns.c b/src/fns.c
index d8018216bd8..7b33b031282 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -1390,7 +1390,7 @@ The value is actually the tail of LIST whose car is ELT. */)
1390 1390
1391DEFUN ("memq", Fmemq, Smemq, 2, 2, 0, 1391DEFUN ("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.
1393Comparison done with EQ. The value is actually the tail of LIST 1393Comparison done with `eq'. The value is actually the tail of LIST
1394whose car is ELT. */) 1394whose 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
4846DEFUN ("maphash", Fmaphash, Smaphash, 2, 2, 0, 4846DEFUN ("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.
4848FUNCTION is called with 2 arguments KEY and VALUE. */) 4848FUNCTION 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{