On 09/28/2014 06:11 PM, Ludovic Courtès wrote: > Cyril Roelandt <tipec...@gmail.com> skribis: > >> * guix/scripts/lint.scm (check-start-article): use "string-ci=?" instead of >> "string=?". >> * tests/lint.scm: Add corresponding tests. > > Test names, lines wrapped please. :-) > >> (define (check-start-article synopsis) >> - (if (or (string=? (string-take synopsis 2) "A ") >> - (string=? (string-take synopsis 3) "An ")) >> + (if (or (string-ci=? (string-take synopsis 2) "A ") >> + (string-ci=? (string-take synopsis 3) "An ")) > > There’s also a problem if SYNOPSIS is shorter, but I wonder if we should > worry about it? >
Nah, doesn't seem so bad. Cyril.