From: Daniel Colascione Date: Tue, 7 Jun 2011 01:39:26 +0000 (-0700) Subject: * fns.c (Fputhash): Document return value. X-Git-Tag: emacs-pretest-24.0.90~104^2~618^2~5 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a54e348216bc8154cafad25ab2edf02fde463204;p=emacs.git * fns.c (Fputhash): Document return value. --- diff --git a/src/ChangeLog b/src/ChangeLog index 6afb661e759..87259a083ae 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2011-06-07 Daniel Colascione + + * fns.c (Fputhash): Document return value. + 2011-06-06 Chong Yidong * 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. */) 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);