[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Chicken-hackers] [PATCH] A stupid but serviceable fix for #1110
From: |
Evan Hanson |
Subject: |
Re: [Chicken-hackers] [PATCH] A stupid but serviceable fix for #1110 |
Date: |
Tue, 15 Dec 2015 13:35:37 +1300 |
On 2015-12-08 14:02, Christian Kellermann wrote:
> I have pushed this for now, there seems to be a change in chicken-5's
> version of setup-download.scm that's not in master:
>
> --8<---------------cut here---------------start------------->8---
> ((irregex-match '(* ("\x09\x0a\x0b\x0c\x0d\x20\xa0")) ln)
> (skip)) ; Blank line.
> --8<---------------cut here---------------end--------------->8---
>
> This has been introduced by commit,
> 0cf4eba9060bdd4354afe50cb6c4ef38146694e2 "Remove srfi-14"
This just skips blank lines; the character set in the regular expression
is equivalent to `char-set:whitespace`, which was used there before
srfi-14 was excised.
Cheers,
Evan