(Fputhash): Return `value' rather than nil.

This commit is contained in:
Stefan Monnier 2000-07-03 06:59:05 +00:00
parent 5a9bf171d0
commit d9c4f922fb
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2000-07-03 Stefan Monnier <monnier@cs.yale.edu>
* fns.c (Fputhash): Return `value' rather than nil.
2000-06-30 Gerd Moellmann <gerd@gnu.org>
* frame.c (next_frame): Don't check focus redirection in case

View file

@ -4714,7 +4714,7 @@ VALUE.")
else
hash_put (h, key, value, hash);
return Qnil;
return value;
}