mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: emacs-undo-fu-session: Improve package style.
* gnu/packages/emacs-xyz.scm (emacs-undo-fu-session)[arguments]: Use G-expressions. Remove trailing #T.
This commit is contained in:
parent
59dffbba8d
commit
0024384189
1 changed files with 9 additions and 9 deletions
|
@ -4036,15 +4036,15 @@ (define-public emacs-undo-fu-session
|
|||
(base32 "04wq1alrzzlidcb4mjb5j7pg68pks1vgv7kvvmi6dzb3l602mb2a"))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments
|
||||
`(#:tests? #t
|
||||
#:test-command '("emacs" "--batch" "-l" "undo-fu-session.el"
|
||||
"-l" "undo-fu-session-test.el")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'check 'set-home
|
||||
(lambda _
|
||||
(setenv "HOME" "/tmp")
|
||||
#t)))))
|
||||
(list
|
||||
#:tests? #t
|
||||
#:test-command #~(list "emacs" "--batch" "-l" "undo-fu-session.el"
|
||||
"-l" "undo-fu-session-test.el")
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-before 'check 'set-home
|
||||
(lambda _
|
||||
(setenv "HOME" "/tmp"))))))
|
||||
(home-page "https://gitlab.com/ideasman42/emacs-undo-fu-session")
|
||||
(synopsis "Save & recover undo steps between Emacs sessions")
|
||||
(description "This package writes undo/redo information upon file save
|
||||
|
|
Loading…
Reference in a new issue