aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2005-06-09 23:27:58 +0000
committerJuanma Barranquero2005-06-09 23:27:58 +0000
commitc14ec13543ea0bef97466957bc17e071a16b7419 (patch)
tree6e763f04c4157ea93f384ec326cb52b36dd8cb21 /src
parent6c649b5f4fdb87747f6c870b37c2dda83e75f892 (diff)
downloademacs-c14ec13543ea0bef97466957bc17e071a16b7419.tar.gz
emacs-c14ec13543ea0bef97466957bc17e071a16b7419.zip
(Fmemq, Fmaphash): Doc fixes.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/fns.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 4c43422e660..4ab24a42e41 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12005-06-10 Juanma Barranquero <lekktu@gmail.com>
2
3 * fns.c (Fmemq, Fmaphash): Doc fixes.
4
12005-06-09 Juanma Barranquero <lekktu@gmail.com> 52005-06-09 Juanma Barranquero <lekktu@gmail.com>
2 6
3 * xfaces.c (Fdisplay_supports_face_attributes_p): 7 * xfaces.c (Fdisplay_supports_face_attributes_p):
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{