]> git.eshelyaron.com Git - emacs.git/commitdiff
* fns.c (Fputhash): Document return value.
authorDaniel Colascione <dan.colascione@gmail.com>
Tue, 7 Jun 2011 01:39:26 +0000 (18:39 -0700)
committerDaniel Colascione <dan.colascione@gmail.com>
Tue, 7 Jun 2011 01:39:26 +0000 (18:39 -0700)
src/ChangeLog
src/fns.c

index 6afb661e759fc7455b486150cdde70060dbe5761..87259a083aee983a63fa28054fa1ad6165d65189 100644 (file)
@@ -1,3 +1,7 @@
+2011-06-07  Daniel Colascione  <dan.colascione@gmail.com>
+
+       * fns.c (Fputhash): Document return value.
+
 2011-06-06  Chong Yidong  <cyd@stupidchicken.com>
 
        * image.c (gif_load): Implement gif89a spec "no disposal" method.
index 4e22276a6284234b371b4bd5cfb0c19ee63d8e54..7a2845741f985a6ed9a9bd97710e77b3c99454dc 100644 (file)
--- 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);