Skip to content
Snippets Groups Projects
Commit 23464bfd authored by Mathieu Lirzin's avatar Mathieu Lirzin
Browse files

lint: Accept '`' character.

* guix/scripts/lint.scm (properly-starts-sentence?): Match Texinfo
  highlighting commands as a sentence start.
parent 2748ee3b
No related branches found
No related tags found
No related merge requests found
......@@ -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."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment