guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: lint: Accept '`' character.


From: Mathieu Lirzin
Subject: 02/02: lint: Accept '`' character.
Date: Thu, 24 Sep 2015 21:05:36 +0000

mthl pushed a commit to branch master
in repository guix.

commit 23464bfd9961769de5ce0ee3cb92e59a86299ca6
Author: Mathieu Lirzin <address@hidden>
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

[Prev in Thread] Current Thread [Next in Thread]