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
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
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--