aboutsummaryrefslogtreecommitdiffstats
path: root/src/fns.c
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/fns.c
parent60002bf5c84f68a641c4acebe56cd1e36b6a3e86 (diff)
downloademacs-a54e348216bc8154cafad25ab2edf02fde463204.tar.gz
emacs-a54e348216bc8154cafad25ab2edf02fde463204.zip
* fns.c (Fputhash): Document return value.
Diffstat (limited to 'src/fns.c')
-rw-r--r--src/fns.c2
1 files changed, 1 insertions, 1 deletions
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);