diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-02-18 21:09:29 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-02-18 21:09:29 +0100 |
commit | 0258aa46e65fc4265c39d09f3bfe212d9057c40d (patch) | |
tree | 00389d9402d7ad2e56c345ca9dec4b8045faab53 /gnu | |
parent | 45860c933e4a706636302d473169295c3958b93e (diff) | |
download | guix-0258aa46e65fc4265c39d09f3bfe212d9057c40d.tar.gz guix-0258aa46e65fc4265c39d09f3bfe212d9057c40d.zip |
gnu: emacs-graphql: Remove trailing #T.
* gnu/packages/emacs-xyz.scm (emacs-graphql)[snippet]: Remove trailing #T.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index e76850a989..3c433ac495 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -1243,8 +1243,7 @@ you will die. The game builds the list of words from the active buffer.") ;; Remove examples file with references to external packages as ;; they do not exist at compilation time. (snippet - '(begin (delete-file "examples.el") - #t)) + '(begin (delete-file "examples.el"))) (method git-fetch) (uri (git-reference (url "https://github.com/vermiculus/graphql.el") |