diff options
| author | Juanma Barranquero | 2005-06-09 23:27:58 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2005-06-09 23:27:58 +0000 |
| commit | c14ec13543ea0bef97466957bc17e071a16b7419 (patch) | |
| tree | 6e763f04c4157ea93f384ec326cb52b36dd8cb21 /src | |
| parent | 6c649b5f4fdb87747f6c870b37c2dda83e75f892 (diff) | |
| download | emacs-c14ec13543ea0bef97466957bc17e071a16b7419.tar.gz emacs-c14ec13543ea0bef97466957bc17e071a16b7419.zip | |
(Fmemq, Fmaphash): Doc fixes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/fns.c | 4 |
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 @@ | |||
| 1 | 2005-06-10 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * fns.c (Fmemq, Fmaphash): Doc fixes. | ||
| 4 | |||
| 1 | 2005-06-09 Juanma Barranquero <lekktu@gmail.com> | 5 | 2005-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): |
| @@ -1471,7 +1471,7 @@ The value is actually the tail of LIST whose car is ELT. */) | |||
| 1471 | 1471 | ||
| 1472 | DEFUN ("memq", Fmemq, Smemq, 2, 2, 0, | 1472 | DEFUN ("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. |
| 1474 | Comparison done with EQ. The value is actually the tail of LIST | 1474 | Comparison done with `eq'. The value is actually the tail of LIST |
| 1475 | whose car is ELT. */) | 1475 | whose 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 | ||
| 5487 | DEFUN ("maphash", Fmaphash, Smaphash, 2, 2, 0, | 5487 | DEFUN ("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. |
| 5489 | FUNCTION is called with 2 arguments KEY and VALUE. */) | 5489 | FUNCTION 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 | { |