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 e910c87375b..a36789b4a92 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -1471,7 +1471,7 @@ The value is actually the tail of LIST whose car is ELT. */)
1471 1471
1472DEFUN ("memq", Fmemq, Smemq, 2, 2, 0, 1472DEFUN ("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.
1474Comparison done with EQ. The value is actually the tail of LIST 1474Comparison done with `eq'. The value is actually the tail of LIST
1475whose car is ELT. */) 1475whose 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
5487DEFUN ("maphash", Fmaphash, Smaphash, 2, 2, 0, 5487DEFUN ("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.
5489FUNCTION is called with 2 arguments KEY and VALUE. */) 5489FUNCTION 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{