guix-devel
[Top][All Lists]
Advanced

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

[PATCH 2/2] lint: Accept '`' character.


From: Mathieu Lirzin
Subject: [PATCH 2/2] lint: Accept '`' character.
Date: Tue, 22 Sep 2015 15:44:23 +0200

* guix/scripts/lint.scm (properly-starts-sentence?): Accept 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 a52a9eb..74989a6 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]