emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#41131: closed ([PATCH] hash-table-merge! ignores other-ht)


From: GNU bug Tracking System
Subject: bug#41131: closed ([PATCH] hash-table-merge! ignores other-ht)
Date: Fri, 12 Mar 2021 21:34:02 +0000

Your message dated Fri, 12 Mar 2021 22:32:38 +0100
with message-id <87o8foxdl5.fsf@pobox.com>
and subject line Re: bug#41131: Bug in hash-table-merge! (and patch)
has caused the debbugs.gnu.org bug report #41131,
regarding [PATCH] hash-table-merge! ignores other-ht
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
41131: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=41131
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: Bug in hash-table-merge! (and patch) Date: Fri, 08 May 2020 01:50:01 +0200 User-agent: Posteo Webmail
Hi,

I just found this bug in the hash-table-merge! function (modul/srfi/srfi-69.scm). Instead of merging both hash tables, it was ignoring one of them (other-ht). Attached is the fix, where it now folds over other-ht and store its data in ht.

Cheers,

Ricardo G. Herdt

Attachment: 0001-Fix-hash-table-merge-bug.patch
Description: Text Data

Attachment: Changelog
Description: Text document


--- End Message ---
--- Begin Message --- Subject: Re: bug#41131: Bug in hash-table-merge! (and patch) Date: Fri, 12 Mar 2021 22:32:38 +0100 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux)
Applied, thanks!

On Fri 08 May 2020 01:50, "Ricardo G. Herdt" <r.herdt@posteo.de> writes:

> Hi,
>
> I just found this bug in the hash-table-merge! function
> (modul/srfi/srfi-69.scm). Instead of merging both hash tables, it was 
> ignoring one of them (other-ht). Attached is the fix, where it now folds
> over other-ht and store its data in ht.
>
> Cheers,
>
> Ricardo G. Herdt
>
> From 180a9e14b807295aa31966a52bfd732647458ef9 Mon Sep 17 00:00:00 2001
> From: "Ricardo G. Herdt" <r.herdt@posteo.de>
> Date: Fri, 8 May 2020 01:37:24 +0200
> Subject: [PATCH] Fix hash-table-merge! bug.
>
> * module/srfi/srfi-69.scm : fold over second hash table.
> ---
>  module/srfi/srfi-69.scm | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/module/srfi/srfi-69.scm b/module/srfi/srfi-69.scm
> index b9486c465..91bcc77db 100644
> --- a/module/srfi/srfi-69.scm
> +++ b/module/srfi/srfi-69.scm
> @@ -330,7 +330,7 @@ Answer the final F result."
>    "Add all key/value pairs from OTHER-HT to HT, overriding HT's
>  mappings where present.  Return HT."
>    (hash-table-fold
> -   ht (lambda (k v ign) (hash-table-set! ht k v)) #f)
> +   other-ht (lambda (k v ign) (hash-table-set! ht k v)) #f)
>    ht)
>  
>  ;;; srfi-69.scm ends here


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]