diff src/elhash.c @ 4410:aae1994dfeec

Document return values for #'puthash, #'clrhash. 2008-01-21 Aidan Kehoe <kehoea@parhasard.net> * elhash.c (Fputhash): Document the return value. (Fclrhash): Ditto.
author Aidan Kehoe <kehoea@parhasard.net>
date Mon, 21 Jan 2008 22:12:36 +0100
parents 479443c0f95a
children 871eb054b34a
line wrap: on
line diff
--- a/src/elhash.c	Mon Jan 21 16:26:36 2008 +0100
+++ b/src/elhash.c	Mon Jan 21 22:12:36 2008 +0100
@@ -1158,7 +1158,7 @@
 }
 
 DEFUN ("puthash", Fputhash, 3, 3, 0, /*
-Hash KEY to VALUE in HASH-TABLE.
+Hash KEY to VALUE in HASH-TABLE, and return VALUE. 
 */
        (key, value, hash_table))
 {
@@ -1222,6 +1222,7 @@
 
 DEFUN ("clrhash", Fclrhash, 1, 1, 0, /*
 Remove all entries from HASH-TABLE, leaving it empty.
+Return HASH-TABLE.
 */
        (hash_table))
 {