aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDaniel Colascione2011-06-06 18:39:26 -0700
committerDaniel Colascione2011-06-06 18:39:26 -0700
commita54e348216bc8154cafad25ab2edf02fde463204 (patch)
treec7140e50e000f13055ab3be6ab8b0f0ea734271a /src
parent60002bf5c84f68a641c4acebe56cd1e36b6a3e86 (diff)
downloademacs-a54e348216bc8154cafad25ab2edf02fde463204.tar.gz
emacs-a54e348216bc8154cafad25ab2edf02fde463204.zip
* fns.c (Fputhash): Document return value.
Diffstat (limited to 'src')
-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 6afb661e759..87259a083ae 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12011-06-07 Daniel Colascione <dan.colascione@gmail.com>
2
3 * fns.c (Fputhash): Document return value.
4
12011-06-06 Chong Yidong <cyd@stupidchicken.com> 52011-06-06 Chong Yidong <cyd@stupidchicken.com>
2 6
3 * image.c (gif_load): Implement gif89a spec "no disposal" method. 7 * image.c (gif_load): Implement gif89a spec "no disposal" method.
diff --git a/src/fns.c b/src/fns.c
index 4e22276a628..7a2845741f9 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -4469,7 +4469,7 @@ If KEY is not found, return DFLT which defaults to nil. */)
4469DEFUN ("puthash", Fputhash, Sputhash, 3, 3, 0, 4469DEFUN ("puthash", Fputhash, Sputhash, 3, 3, 0,
4470 doc: /* Associate KEY with VALUE in hash table TABLE. 4470 doc: /* Associate KEY with VALUE in hash table TABLE.
4471If KEY is already present in table, replace its current value with 4471If KEY is already present in table, replace its current value with
4472VALUE. */) 4472VALUE. In any case, return VALUE. */)
4473 (Lisp_Object key, Lisp_Object value, Lisp_Object table) 4473 (Lisp_Object key, Lisp_Object value, Lisp_Object table)
4474{ 4474{
4475 struct Lisp_Hash_Table *h = check_hash_table (table); 4475 struct Lisp_Hash_Table *h = check_hash_table (table);