Re: [Chicken-hackers] [PATCH] Always quote symbols starting or ending with a colon to ensure readability

2019-06-03 Thread felix . winkelmann
> Hi all, > > We've seen quite a bit of breakage with the CR patch. Most of it has > been fixed by aeec82d, but it also uncovered another bug that has been > there since the beginning. Eggs using srfi-128 fail, see for example: >

Re: [Chicken-hackers] possible bug in simple-sha1

2019-06-03 Thread Vasilij Schneidermann
Hello Kristian, I'd rather not reuse that file as is because who knows what other edits they made. Another thing to consider is that we most certainly made at least one of our own adjustments, like using the C_LITTLE_ENDIAN feature to detect the endianness instead of BYTE_ORDER. For this reason

Re: [Chicken-hackers] possible bug in simple-sha1

2019-06-03 Thread Kristian Lein-Mathisen
That fixes it Vasilij! Thanks a lot. Felix, can you get this fix upstream? These steps worked for me: 1005 klm@kth ~/.c/c/simple-sha1 ➤ wget https://raw.githubusercontent.com/clibs/sha1/master/sha1.h 1005 klm@kth ~/.c/c/simple-sha1 ➤ mv sha1.h.1 sha1.h 1005 klm@kth ~/.c/c/simple-sha1 ➤ wget