guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: emacs-shx: Improve packaging style.


From: guix-commits
Subject: 02/02: gnu: emacs-shx: Improve packaging style.
Date: Sat, 28 Jan 2023 09:27:49 -0500 (EST)

ngz pushed a commit to branch master
in repository guix.

commit 3d46e8837ea29ddb800dfd121f518dfdaf8e6a56
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sat Jan 28 15:25:58 2023 +0100

    gnu: emacs-shx: Improve packaging style.
    
    * gnu/packages/emacs-xyz.scm (emacs-shx)[arguments]: Use G-expressions.
    [synopsis, description]: Use proper capitalization.
---
 gnu/packages/emacs-xyz.scm | 28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index d042771d77..175b735730 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -7014,23 +7014,23 @@ the speedbar window.")
                  (base32 
"1wkqnc5n8if8fsh7f3bdr5nzn6dbj1nzdxlmnz8nflmx4g32fp6v"))))
       (build-system emacs-build-system)
       (arguments
-       `(#:tests? #t
-         #:test-command
-         '("emacs" "--batch" "--quiet"
-           "--script" "test/script.el")
-         #:phases
-         (modify-phases %standard-phases
-           (add-after 'unpack 'appease-checkdoc
-             (lambda _
-               (substitute* "shx.el"
-                 (("Toggle shx-mode on") "Toggle `shx-mode' on")))))))
+       (list
+        #:tests? #t
+        #:test-command
+        #~(list "emacs" "--batch" "--quiet" "--script" "test/script.el")
+        #:phases
+        #~(modify-phases %standard-phases
+            (add-after 'unpack 'appease-checkdoc
+              (lambda _
+                (substitute* "shx.el"
+                  (("Toggle shx-mode on") "Toggle `shx-mode' on")))))))
       (home-page "https://github.com/riscy/shx-for-emacs";)
-      (synopsis "Extras for the comint-mode shell")
+      (synopsis "Extras for the Comint mode shell")
       (description
-       "This package extends @code{comint-mode}: it parses markup in the output
+       "This package extends Comint mode: it parses markup in the output
 stream, enabling plots and graphics to be embedded, and adds command-line
-functions which plug into Emacs (e.g. use @code{:e <filename>} to edit a
-file).")
+functions which plug into Emacs (e.g., use @code{:e <filename>} to edit
+a file).")
       (license license:gpl3+))))
 
 (define-public emacs-names



reply via email to

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