From 23464bfd9961769de5ce0ee3cb92e59a86299ca6 Mon Sep 17 00:00:00 2001 From: Mathieu Lirzin Date: Tue, 22 Sep 2015 15:11:48 +0200 Subject: [PATCH] lint: Accept '`' character. * guix/scripts/lint.scm (properly-starts-sentence?): Match Texinfo highlighting commands as a sentence start. --- guix/scripts/lint.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guix/scripts/lint.scm b/guix/scripts/lint.scm index 95a8e2e66d..b0427f75f4 100644 --- a/guix/scripts/lint.scm +++ b/guix/scripts/lint.scm @@ -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."