From: Stefan Monnier Date: Mon, 3 Jul 2000 06:59:05 +0000 (+0000) Subject: (Fputhash): Return `value' rather than nil. X-Git-Tag: emacs-pretest-21.0.90~3025 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d9c4f922fb7f5e8b7f7d0d5aab026cbd40816e9a;p=emacs.git (Fputhash): Return `value' rather than nil. --- diff --git a/src/ChangeLog b/src/ChangeLog index dde01903d48..912ff454212 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2000-07-03 Stefan Monnier + + * fns.c (Fputhash): Return `value' rather than nil. + 2000-06-30 Gerd Moellmann * frame.c (next_frame): Don't check focus redirection in case diff --git a/src/fns.c b/src/fns.c index 1e9905b1ab6..24107f2ddeb 100644 --- a/src/fns.c +++ b/src/fns.c @@ -4714,7 +4714,7 @@ VALUE.") else hash_put (h, key, value, hash); - return Qnil; + return value; }