aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ChangeLog4
-rw-r--r--src/fns.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 6afb661e75..87259a083a 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
+2011-06-07 Daniel Colascione <[email protected]>
+
+ * fns.c (Fputhash): Document return value.
+
2011-06-06 Chong Yidong <[email protected]>
* image.c (gif_load): Implement gif89a spec "no disposal" method.
diff --git a/src/fns.c b/src/fns.c
index 4e22276a62..7a2845741f 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -4469,7 +4469,7 @@ If KEY is not found, return DFLT which defaults to nil. */)
DEFUN ("puthash", Fputhash, Sputhash, 3, 3, 0,
doc: /* Associate KEY with VALUE in hash table TABLE.
If KEY is already present in table, replace its current value with
-VALUE. */)
+VALUE. In any case, return VALUE. */)
(Lisp_Object key, Lisp_Object value, Lisp_Object table)
{
struct Lisp_Hash_Table *h = check_hash_table (table);