lint: Accept '`' character.

* guix/scripts/lint.scm (properly-starts-sentence?): Match Texinfo
  highlighting commands as a sentence start.
This commit is contained in:
Mathieu Lirzin 2015-09-22 15:11:48 +02:00
parent 2748ee3bcf
commit 23464bfd99

View file

@ -129,7 +129,7 @@ (define (list-checkers-and-exit)
(exit 0))
(define (properly-starts-sentence? s)
(string-match "^[(\"'[:upper:][:digit:]]" s))
(string-match "^[(\"'`[:upper:][:digit:]]" s))
(define (starts-with-abbreviation? s)
"Return #t if S starts with what looks like an abbreviation or acronym."