bug#75998: [guile-lib] html->sxml does not decode entities in attributes

2025-02-01 Thread tomas
On Sat, Feb 01, 2025 at 09:10:04PM +0100, Tomas Volf wrote: > > Hello, > > I think I found a bug in the htmlprag module in guile-lib. When parsing > attributes, the values are not properly decoded: > > --8<---cut here---start->8--- > scheme@(guile-user)> ,use

bug#75998: [guile-lib] html->sxml does not decode entities in attributes

2025-02-01 Thread Tomas Volf
Hello, I think I found a bug in the htmlprag module in guile-lib. When parsing attributes, the values are not properly decoded: --8<---cut here---start->8--- scheme@(guile-user)> ,use (htmlprag) scheme@(guile-user)> (html->sxml "") $1 = (*TOP* (hr (@ (aaa "b

bug#75997: (ice-9 match): warning: unused variable `failure'

2025-02-01 Thread Tomas Volf
Hi, --8<---cut here---start->8--- (use-modules (ice-9 match)) (match-lambda (_ #f)) --8<---cut here---end--->8--- This source code leads to a warning when compiled: --8<---cut here---start--