]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fmemq, Fmaphash): Doc fixes.
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 9 Jun 2005 23:27:58 +0000 (23:27 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 9 Jun 2005 23:27:58 +0000 (23:27 +0000)
src/ChangeLog
src/fns.c

index 4c43422e660095431339e546516d6753144b12e3..4ab24a42e412766e28381f21111618b41757a9d0 100644 (file)
@@ -1,3 +1,7 @@
+2005-06-10  Juanma Barranquero  <lekktu@gmail.com>
+
+       * fns.c (Fmemq, Fmaphash): Doc fixes.
+
 2005-06-09  Juanma Barranquero  <lekktu@gmail.com>
 
        * xfaces.c (Fdisplay_supports_face_attributes_p):
index e910c87375b3b161a1d11a5d8842847ae7137859..a36789b4a92b1d4cf1e3f0d16326a8687480dfae 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -1471,7 +1471,7 @@ The value is actually the tail of LIST whose car is ELT.  */)
 
 DEFUN ("memq", Fmemq, Smemq, 2, 2, 0,
        doc: /* Return non-nil if ELT is an element of LIST.
-Comparison done with EQ.  The value is actually the tail of LIST
+Comparison done with `eq'.  The value is actually the tail of LIST
 whose car is ELT.  */)
      (elt, list)
      Lisp_Object elt, list;
@@ -5486,7 +5486,7 @@ DEFUN ("remhash", Fremhash, Sremhash, 2, 2, 0,
 
 DEFUN ("maphash", Fmaphash, Smaphash, 2, 2, 0,
        doc: /* Call FUNCTION for all entries in hash table TABLE.
-FUNCTION is called with 2 arguments KEY and VALUE.  */)
+FUNCTION is called with two arguments, KEY and VALUE.  */)
      (function, table)
      Lisp_Object function, table;
 {