Closed iamleot closed 9 years ago
Hi, thanks for the notice.
The formatting is quite broken on here. Can you put it in a pastebin (like https://gist.github.com/ e.g.) please?
Hello Chris,
"Chris P." writes:
Hi, thanks for the notice.
The formatting is quite broken on here. Can you put it in a pastebin (like https://gist.github.com/ e.g.) please? Of course!:
Ciao, L.
Thanks, applied as of 68962c8720b409adc4cb890c8146df5f8504bfd8. It will be included in the next release.
Hello Chris and the entire glyr community, some days ago I updated the audio/glyr package in pkgsrc. While there I saw that we have a local and trivial patch that can be pushed upstream. Basically it just fixes the ctype(3).
I will attach it here, if it can't be easily handled via GitHub issues I can send you a private email containing it.
Thank you for the attention and for this great piece of software! L.
------------------8<-------------------8<-------------------8<------------------ $NetBSD: patch-lib_stringlib.c,v 1.1 2014/09/11 06:45:45 dholland Exp $
Use correctly.
--- lib/stringlib.c~ 2014-02-08 11:06:45.000000000 +0000 +++ lib/stringlib.c @@ -927,8 +927,8 @@ static gchar * trim_in_text (gchar * str
@@ -1011,7 +1011,7 @@ void trim_copy (gchar input, gchar out gchar c;
/* skip spaces at start */
while (input[0] && isspace ((unsigned char)input) ) { ++input; } @@ -1023,7 +1023,7 @@ void trim_copy (gchar input, gchar out c = * (output++) = \ (input++);
@@ -1050,14 +1050,14 @@ gchar * trim_nocopy (gchar * s) gchar * end = NULL;
/* skip spaces at start */
while (_start && isspace ((unsigned char)_start) ) ++start;
/* iterate over the rest remebering last non-whitespace _/ char *i = start; while (_i) {