mthl pushed a commit to branch master
in repository guix.

commit 23464bfd9961769de5ce0ee3cb92e59a86299ca6
Author: Mathieu Lirzin <[email protected]>
Date:   Tue Sep 22 15:11:48 2015 +0200

    lint: Accept '`' character.
    
    * guix/scripts/lint.scm (properly-starts-sentence?): Match Texinfo
      highlighting commands as a sentence start.
---
 guix/scripts/lint.scm |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/guix/scripts/lint.scm b/guix/scripts/lint.scm
index 95a8e2e..b0427f7 100644
--- a/guix/scripts/lint.scm
+++ b/guix/scripts/lint.scm
@@ -129,7 +129,7 @@ monad."
   (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."

Reply via email to