diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-11-11 11:22:39 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-11-11 11:22:39 +0100 |
commit | af6105afc67a15a491a0a4fd18a28c9f801a0b94 (patch) | |
tree | 0c73050671dd5720c77cd9599dce3a9ef0d3f54b | |
parent | 23332c83a28630711103924716268babd9640e11 (diff) |
gnu: emacs-helm-company: Improve package style.
* gnu/packages/emacs-xyz.scm (emacs-helm-company)[arguments]: Use
G-expressions.
[synopsis, description]: Use proper capitalization.
Change-Id: I39f6c8accd31ae9cde94d3822e2be1d5a41fc6a6
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 6b8261ad2b..1319c353cb 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -26583,13 +26583,12 @@ tracking.") (native-inputs (list emacs-ert-runner)) (arguments - `(#:tests? #t - #:test-command '("ert-runner"))) + (list #:tests? #t + #:test-command #~(list "ert-runner"))) (home-page "https://github.com/Sodel-the-Vociferous/helm-company") - (synopsis "Helm interface for company-mode") + (synopsis "Helm interface for Company mode") (description - "This is a Helm interface to company-mode, a text completion -framework.") + "This is a Helm interface to Company mode, a text completion framework.") (license license:gpl3+))) (define-public emacs-helm-descbinds |