~ruther/guix-local

431e5f5a3ea1da2a0e1c58990d3c8f2860dbe7d0 — Ludovic Courtès 11 years ago 17854ef
lint: Tolerate sentences that start with a parenthesis or a quote.

* guix/scripts/lint.scm (properly-starts-sentence?): Add (, ", and ' as
  valid beginnings.
1 files changed, 1 insertions(+), 1 deletions(-)

M guix/scripts/lint.scm
M guix/scripts/lint.scm => guix/scripts/lint.scm +1 -1
@@ 77,7 77,7 @@
  (exit 0))

(define (properly-starts-sentence? s)
  (string-match "^[[:upper:][:digit:]]" s))
  (string-match "^[(\"'[:upper:][:digit:]]" s))

(define (check-description-style package)
  ;; Emit a warning if stylistic issues are found in the description of PACKAGE.